You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
281 B
13 lines
281 B
<?php
|
|
/**
|
|
* Api路由
|
|
*/
|
|
|
|
use think\facade\Route;
|
|
|
|
Route::group('api', function() {
|
|
// 微信验证路由地址
|
|
Route::rule('Wx/verify', 'api.Wx/verify', 'get');
|
|
//MISS路由定义
|
|
Route::miss('api.Miss/index');
|
|
})->middleware(app\middleware\ApiResponse::class);
|
|
|