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
404 B
13 lines
404 B
3 years ago
|
<?php
|
||
|
|
||
|
\think\facade\Route::group('', function () {
|
||
|
// \think\facade\Route::any('test', 'index/test');
|
||
|
|
||
|
// ===============================route end================================= //
|
||
|
});
|
||
|
|
||
|
\think\facade\Route::get('xt', 'index/xt')->middleware(\app\middleware\RequestListen::class, []);
|
||
|
|
||
|
\think\facade\Route::post('up', function () {
|
||
|
return (new \app\SystemUpload())->base64ImageUpload();
|
||
|
});
|