import type { ApiClient } from '../api/client' import { healthSchema } from '../schemas/health' export const healthService = (api: ApiClient) => ({ get: () => api.request('/health', { schema: healthSchema }) })