This commit is contained in:
2022-11-21 16:30:40 +08:00
parent 87e650b2f1
commit cbeaaf6396
5 changed files with 33 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
<?php
use Illuminate\Routing\Router;
use Illuminate\Support\Facades\Route;
Route::group([
'prefix' => 'version',
], function (Router $router) {
$router->post('check', 'VersionController@check');
});