Files
nl-admin-api/routes/web.php
lq b2c9aecfb9
Some checks failed
Tests / PHP 8.2 (push) Has been cancelled
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
更新sql安装器(web版本需要修复)
2025-06-20 09:02:33 +08:00

11 lines
171 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});
Route::get('/init', function () {
return view('init');
});