import type { HouseArchitecturalStyle } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' const getArchitecturalStyles = (http: HttpClient) => ({ query: (): Promise< Response > => { return http.get('v3/admin/house_architectural_styles') }, }) export default getArchitecturalStyles