This commit is contained in:
root
2019-10-25 02:03:31 +08:00
parent adcec73982
commit 2afd94b7f4
3 changed files with 23 additions and 7 deletions

View File

@ -94,11 +94,10 @@ Route::prefix('v1')
});
// Server
Route::prefix('server')
->middleware('server')
->group(function () {
// Server
Route::get('user', 'ServerController@user');
Route::post('submit', 'ServerController@submit');
Route::get('config', 'ServerController@config');
Route::get('deepbwork/user', 'Server\\DeepbworkController@user');
Route::post('deepbwork/submit', 'Server\\DeepbworkController@submit');
Route::get('deepbwork/config', 'Server\\DeepbworkController@config');
});
});