test-app-1/apps/server/routers/index.ts
2026-01-22 00:14:27 +05:00

10 lines
213 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";