Add AI DEV Node deployment foundation

This commit is contained in:
unknown
2026-07-13 10:33:21 +09:00
parent 6abcee3727
commit b90bfe35ca
23 changed files with 3978 additions and 0 deletions

6
server/routes/index.ts Normal file
View File

@@ -0,0 +1,6 @@
import { Router } from 'express';
import { healthRouter } from './health.js';
export const apiRouter = Router();
apiRouter.use(healthRouter);