mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-05 19:41:43 +08:00
13 lines
191 B
Smarty
13 lines
191 B
Smarty
<?php
|
|
/**
|
|
* Api路由
|
|
*/
|
|
|
|
use think\facade\Route;
|
|
|
|
Route::group('api', function() {
|
|
{$API_RULE}
|
|
//MISS路由定义
|
|
Route::miss('api/Miss/index');
|
|
})->middleware('ApiResponse');
|