1
0
mirror of https://gitee.com/apiadmin/ApiAdmin.git synced 2025-04-06 03:58:00 +08:00

modified 优化细节

This commit is contained in:
zhaoxiang 2019-07-01 14:53:05 +08:00
parent d6328309e4
commit 165e9ab4f1

11
route/apiRoute.php Normal file

@ -0,0 +1,11 @@
<?php
/**
* Api路由
*/
use think\facade\Route;
Route::group('api', function() {
//MISS路由定义
Route::miss('api/Miss/index');
})->middleware('ApiResponse');