import { router } from "../../.." import { enterDetails } from "./enterDetails" import { hotelsByCity } from "./hotelsByCity" import { hotelsByCityWithBookingCode } from "./hotelsByCityWithBookingCode" import { hotelsByHotelIds } from "./hotelsByHotelIds" import { myStay } from "./myStay" import { selectRate } from "./selectRate" export const availability = router({ hotelsByCity, hotelsByHotelIds, enterDetails, myStay, selectRate, hotelsByCityWithBookingCode, })