add: api.module.admin (added sample module for new configuration)

This commit is contained in:
xdrm-brackets 2017-12-10 20:34:49 +01:00
parent d97f81c2bc
commit f1da57666d
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?php
namespace api\module;
use \error\core\Error;
class admin{
public static function post($args){
extract($args);
return [ 'admin' => 'post' ];
}
}