no message

This commit is contained in:
hellcat 2025-06-26 18:27:51 +08:00
parent ec5cd492eb
commit e88ab0ae1a
2 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,11 @@ use App\Services\TomTool\Http;
class TestsController
{
public function hello()
{
echo "is ok !";
}
public function hook($sHostName = 'ssssss')
{

View File

@ -9,6 +9,8 @@ use App\Http\Controllers\Api\TG\HookController;
Route::get('/cron', [CronController::class, 'index']);
Route::get('/tests/hello', [TestsController::class, 'hello']);
Route::get('/tests/hook', [TestsController::class, 'hook']);
//Route::post('/api/tg/hook', [HookController::class, 'cmd']);