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 { z } from "zod"
export const getHotelInputSchema = z.object({
hotelId: z.string(),
})