import type { HttpClient } from '@services' import getLandingPageDestination from './getLandingPageDestination' import getLandingPageDestinationHouses from './getLandingPageDestinationHouses' import getLandingPagePopularDestinations from './getLandingPagePopularDestinations' const landingPageDestinationRepository = (http: HttpClient) => ({ getLandingPageDestination: getLandingPageDestination(http).query, getLandingPageDestinationHouses: getLandingPageDestinationHouses(http).query, getLandingPagePopularDestinations: getLandingPagePopularDestinations(http).query, }) export default landingPageDestinationRepository