Files
managementwebsite01/artifacts/api-server/src/routes/index.ts
Replit Agent 9692a6b58f Initial commit
2026-07-20 17:11:01 +00:00

9 lines
171 B
TypeScript

import { Router, type IRouter } from "express";
import healthRouter from "./health";
const router: IRouter = Router();
router.use(healthRouter);
export default router;