import { Router, type IRouter } from "express";
import healthRouter from "./health";
import yeRouter from "./ye";

const router: IRouter = Router();

router.use(healthRouter);
router.use(yeRouter);

export default router;
