feat: send dashboard read-model deltas

This commit is contained in:
2026-08-11 12:36:29 +00:00
parent c737ee2cd1
commit a2e94c3092
17 changed files with 1285 additions and 395 deletions
+2
View File
@@ -25,6 +25,7 @@ import { dynastyRouter } from './router/dynasty/index.js';
import { voteRouter } from './router/vote/index.js';
import { bettingRouter } from './router/betting/index.js';
import { archiveRouter } from './router/archive/index.js';
import { dashboardRouter } from './router/dashboard/index.js';
export const appRouter = router({
health: healthRouter,
@@ -52,6 +53,7 @@ export const appRouter = router({
vote: voteRouter,
betting: bettingRouter,
archive: archiveRouter,
dashboard: dashboardRouter,
});
export type AppRouter = typeof appRouter;