Files
lsky-pro/route/route.php
T
2018-12-07 18:02:13 +08:00

23 lines
835 B
PHP

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\facade\Route;
Route::view('compatibility', 'index@tpl/compatibility');
// [Api Route]
Route::group('api', function () {
Route::post('token', 'api/Token/index');
Route::post('upload', 'api/Upload/index');
});
return [];