feat: 토너먼트 관련 기능 추가 및 베팅 처리 로직 구현

This commit is contained in:
2026-01-23 16:58:59 +00:00
parent b6164868b7
commit 293a5035c6
9 changed files with 314 additions and 15 deletions
+2
View File
@@ -16,6 +16,7 @@ import { turnDaemonRouter } from './router/turnDaemon/index.js';
import { turnsRouter } from './router/turns/index.js';
import { worldRouter } from './router/world/index.js';
import { auctionRouter } from './router/auction/index.js';
import { tournamentRouter } from './router/tournament/index.js';
export const appRouter = router({
health: healthRouter,
@@ -34,6 +35,7 @@ export const appRouter = router({
npc: npcRouter,
turnDaemon: turnDaemonRouter,
auction: auctionRouter,
tournament: tournamentRouter,
});
export type AppRouter = typeof appRouter;