fine-emus-roll/apps/server/routers/index.ts
2026-05-08 19:12:14 +05:00

11 lines
270 B
TypeScript

/**
* Routers Index
*
* Re-export all sub-routers from a single entry point.
* This keeps imports clean in the main router.ts
*/
export { usersRouter } from "./users";
export { postsRouter } from "./posts";
export { submitUserDataRouter } from "./submitUserData";