php-micro-file-server/route/app.php

24 lines
880 B
PHP
Raw Normal View History

2024-09-12 22:11:31 +08:00
<?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::post('/file/upload', 'index/upload');
Route::post('/upload', 'index/upload');
Route::get('/actuator/health', function () {
return 'hello,ThinkPHP6!';
});
Route::get('/actuator/info', function () {
return 'hello,ThinkPHP6!';
});