mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 19:25:10 -05:00
15 lines
382 B
PHP
15 lines
382 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Api\Matchmaking\MatchmakingController;
|
|
|
|
Route::post('httplog/event', function () {
|
|
return response('', 204);
|
|
});
|
|
Route::post('server/event', function () {
|
|
return response('', 204);
|
|
});
|
|
Route::post('client/event', function () {
|
|
return response('', 204);
|
|
});
|
|
|
|
Route::post('matchmaking/event', [MatchmakingController::class, 'cancelQueue']); |