streams/Zotlabs/Daemon/Delxitems.php
2021-12-03 14:01:39 +11:00

25 lines
348 B
PHP

<?php
namespace Zotlabs\Daemon;
/*
* Daemon to remove 'item' resources in the background from a removed connection
*/
class Delxitems
{
public static function run($argc, $argv)
{
cli_startup();
if ($argc != 3) {
return;
}
remove_abook_items($argv[1], $argv[2]);
return;
}
}