Implement nation betting lifecycle

This commit is contained in:
2026-07-25 20:16:11 +00:00
parent 06ab6c3565
commit 25e67e15ae
15 changed files with 1750 additions and 0 deletions
+2
View File
@@ -23,6 +23,7 @@ import { yearbookRouter } from './router/yearbook/index.js';
import { rankingRouter } from './router/ranking/index.js';
import { dynastyRouter } from './router/dynasty/index.js';
import { voteRouter } from './router/vote/index.js';
import { bettingRouter } from './router/betting/index.js';
export const appRouter = router({
health: healthRouter,
@@ -48,6 +49,7 @@ export const appRouter = router({
ranking: rankingRouter,
dynasty: dynastyRouter,
vote: voteRouter,
betting: bettingRouter,
});
export type AppRouter = typeof appRouter;