import type { CalendarImport } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type GetCalendarImportInput = { houseId: string } const getCalendarImport = (http: HttpClient) => ({ query: ( input: GetCalendarImportInput, ): Promise> => { return http.get(`v3/admin/houses/${input.houseId}/calendar_import`) }, }) export default getCalendarImport