Init core class, Init plugin functionnality

This commit is contained in:
Eole 2016-01-25 23:36:23 +01:00
parent e17f02814d
commit ef05e8a90d
8 changed files with 46 additions and 0 deletions

13
server/core/Plugin.php Normal file
View file

@ -0,0 +1,13 @@
<?php
abstract class plugin{
public $api;
public function __construct($api){
$this->api = $api;
}
}