9 lines
145 B
Plaintext
Executable File
9 lines
145 B
Plaintext
Executable File
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use App\Http\Controllers\TgController;
|
|
|
|
Route::any('/{token}/Msg', [TgController::class, 'Msg']);
|
|
|
|
|