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