chad/server/trpc/routers/index.ts
Никита Круглицкий bb48e52a99
Some checks failed
Deploy / deploy (push) Failing after 4m2s
update
2025-10-09 22:29:42 +06:00

9 lines
171 B
TypeScript

import { router } from '../router'
import { authRouter } from './auth'
export const appRouter = router({
auth: authRouter,
})
export type AppRouter = typeof appRouter