feat: 외교부 기능 추가 및 외교 문서 관련 데이터베이스 모델 생성

This commit is contained in:
2026-01-28 15:35:17 +00:00
parent bebb0de3c4
commit 87e4639663
8 changed files with 1003 additions and 1 deletions
+2
View File
@@ -18,6 +18,7 @@ import { worldRouter } from './router/world/index.js';
import { auctionRouter } from './router/auction/index.js';
import { tournamentRouter } from './router/tournament/index.js';
import { boardRouter } from './router/board/index.js';
import { diplomacyRouter } from './router/diplomacy/index.js';
export const appRouter = router({
health: healthRouter,
@@ -38,6 +39,7 @@ export const appRouter = router({
auction: auctionRouter,
tournament: tournamentRouter,
board: boardRouter,
diplomacy: diplomacyRouter,
});
export type AppRouter = typeof appRouter;