index.ts 220 B

1234567891011
  1. import { Router } from "express";
  2. import health from "./health";
  3. import links from "./links";
  4. const router = Router();
  5. router.use("/api/v2/health", health);
  6. router.use("/api/v2/links", links);
  7. export default router;