Files
ai-safety-console-web/src/services/healthService.ts
T
baozaotumao2025 1b90e552a5 first commit
2026-07-18 21:10:39 +08:00

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 }) })