aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Addon.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Daemon/Addon.php')
-rw-r--r--Zotlabs/Daemon/Addon.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/Zotlabs/Daemon/Addon.php b/Zotlabs/Daemon/Addon.php
new file mode 100644
index 000000000..c2889e596
--- /dev/null
+++ b/Zotlabs/Daemon/Addon.php
@@ -0,0 +1,14 @@
+<?php
+
+namespace Zotlabs\Daemon;
+
+require_once('include/zot.php');
+
+class Addon {
+
+ static public function run($argc,$argv) {
+
+ call_hooks('daemon_addon',$argv);
+
+ }
+}