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