feat: Add Hotel endpoint and TRPC query

This commit is contained in:
Chuma McPhoy
2024-07-01 13:53:07 +02:00
parent 9b4fde334f
commit 9413739f17
5 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { mergeRouters } from "@/server/trpc"
import { hotelQueryRouter } from "./query"
export const hotelsRouter = mergeRouters(hotelQueryRouter)