add: api.module.admin (added sample module for new configuration)
This commit is contained in:
parent
d97f81c2bc
commit
f1da57666d
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace api\module;
|
||||||
|
|
||||||
|
use \error\core\Error;
|
||||||
|
|
||||||
|
|
||||||
|
class admin{
|
||||||
|
|
||||||
|
|
||||||
|
public static function post($args){
|
||||||
|
extract($args);
|
||||||
|
|
||||||
|
return [ 'admin' => 'post' ];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue