Files
lsky-pro/route/route.php
T

24 lines
880 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');
// [RESTFul Api Route]
Route::group('api', function () {
Route::post('upload', 'api/Upload/index');
Route::resource('auth', 'api/Auth');
Route::resource('user', 'api/User');
});
return [];