mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
16 lines
251 B
Smarty
16 lines
251 B
Smarty
<?php
|
|
/**
|
|
* Api路由
|
|
*/
|
|
|
|
use think\Route;
|
|
|
|
Route::group('api', function () {
|
|
Route::miss('api/Miss/index');
|
|
});
|
|
$afterBehavior = [
|
|
'\app\api\behavior\ApiAuth',
|
|
'\app\api\behavior\ApiPermission',
|
|
'\app\api\behavior\RequestFilter'
|
|
];
|