streams/Zotlabs/Daemon/Delxitems.php
2019-08-19 22:35:17 -04:00

23 lines
296 B
PHP

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