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
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { router } from "../../../.."
|
|
import { room } from "./room"
|
|
import { rooms } from "./rooms"
|
|
|
|
export const selectRate = router({
|
|
room,
|
|
rooms,
|
|
})
|