summaryrefslogtreecommitdiff
path: root/server/core/Plugin.php
diff options
context:
space:
mode:
Diffstat (limited to 'server/core/Plugin.php')
-rw-r--r--server/core/Plugin.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/server/core/Plugin.php b/server/core/Plugin.php
new file mode 100644
index 0000000..e6fd8a7
--- /dev/null
+++ b/server/core/Plugin.php
@@ -0,0 +1,13 @@
+<?php
+
+abstract class plugin{
+
+ public $api;
+
+ public function __construct($api){
+
+ $this->api = $api;
+
+ }
+
+}