8 lines
123 B
PHP
Raw Normal View History

2024-08-04 19:20:32 +02:00
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
2024-08-07 12:51:35 +02:00
return redirect('/api/documentation');
2024-08-04 19:20:32 +02:00
});