| import { Router, type IRouter } from "express"; | |
| import healthRouter from "./health"; | |
| import imagesRouter from "./images"; | |
| import videosRouter from "./videos"; | |
| import configRouter from "./config"; | |
| import apiKeysRouter from "./apiKeys"; | |
| import authRouter from "./auth"; | |
| import adminRouter from "./admin"; | |
| const router: IRouter = Router(); | |
| router.use(healthRouter); | |
| router.use("/images", imagesRouter); | |
| router.use("/videos", videosRouter); | |
| router.use("/config", configRouter); | |
| router.use("/apikeys", apiKeysRouter); | |
| router.use("/auth", authRouter); | |
| router.use("/admin", adminRouter); | |
| export default router; | |