Files
timmy-tower/artifacts/api-server/src/routes/index.ts

9 lines
171 B
TypeScript
Raw Normal View History

2026-03-13 23:21:55 +00:00
import { Router, type IRouter } from "express";
import healthRouter from "./health";
const router: IRouter = Router();
router.use(healthRouter);
export default router;