import type { HttpClient } from '@services' import { getAllDocuments, getAppointments, getClientItinerary, } from './contracts' const tailorRepository = (http: HttpClient) => ({ contracts: { getClientItinerary: getClientItinerary(http).query, getAllDocuments: getAllDocuments(http).query, getAppointments: getAppointments(http).query, }, }) export default tailorRepository