14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
/** Routers */
|
|
import { contentstackRouter } from "./routers/contentstack"
|
|
import { hotelsRouter } from "./routers/hotels"
|
|
import { userRouter } from "./routers/user"
|
|
import { router } from "./trpc"
|
|
|
|
export const appRouter = router({
|
|
contentstack: contentstackRouter,
|
|
hotel: hotelsRouter,
|
|
user: userRouter,
|
|
})
|
|
|
|
export type AppRouter = typeof appRouter
|