mirror of
https://github.com/notf0und/SGS
synced 2026-07-17 18:21:06 +00:00
16 lines
438 B
PHP
16 lines
438 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
Route::get('tinfoil', \App\Http\Controllers\Tinfoil\IndexController::class)
|
|
->name('tinfoil');
|
|
|
|
Route::get('dbi/{path?}', \App\Http\Controllers\DBI\IndexController::class)
|
|
->where('path', '.*')
|
|
->name('dbi');
|