Files
web/packages/trpc/lib/routers/hotels/availability/index.ts
Joakim Jäderberg 8498026189 Merged in chore/refactor-hotel-trpc-routes (pull request #2891)
Chore/refactor hotel trpc routes

* chore(SW-3519): refactor trpc hotel routers

* chore(SW-3519): refactor trpc hotel routers

* refactor

* merge

* Merge branch 'master' of bitbucket.org:scandic-swap/web into chore/refactor-hotel-trpc-routes


Approved-by: Linus Flood
2025-10-01 12:55:45 +00:00

17 lines
480 B
TypeScript

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,
})