1234567891011121314151617181920212223 |
- <?php
- use think\facade\Route;
- Route::get('apidoc/config', "\\hg\\apidoc\\Controller@getConfig");
- Route::get('apidoc/data', "\\hg\\apidoc\\Controller@getList");
- Route::post('apidoc/auth', "\\hg\\apidoc\\Controller@verifyAuth");
|