[API]新增接口/api/game/anteConfig获取底注配置

This commit is contained in:
2026-03-25 14:46:47 +08:00
parent ce9062e186
commit 9b4104fc0e
2 changed files with 16 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ Route::group('/api', function () {
Route::any('/game/config', [app\api\controller\GameController::class, 'config']);
Route::any('/game/buyLotteryTickets', [app\api\controller\GameController::class, 'buyLotteryTickets']);
Route::any('/game/lotteryPool', [app\api\controller\GameController::class, 'lotteryPool']);
Route::any('/game/anteConfig', [app\api\controller\GameController::class, 'anteConfig']);
Route::any('/game/playStart', [app\api\controller\GameController::class, 'playStart']);
})->middleware([
TokenMiddleware::class,