/** Routers */ import { bookingRouter } from "./routers/booking" import { contentstackRouter } from "./routers/contentstack" import { hotelsRouter } from "./routers/hotels" import { userRouter } from "./routers/user" import { router } from "./trpc" export const appRouter = router({ booking: bookingRouter, contentstack: contentstackRouter, hotel: hotelsRouter, user: userRouter, }) export type AppRouter = typeof appRouter