7 lines
141 B
PHP
7 lines
141 B
PHP
<?php
|
|
use Incoviba\Controller\API\Admin\Users;
|
|
|
|
$app->group('/users', function($app) {
|
|
$app->post('/add[/]', Users::class . ':add');
|
|
});
|