Files
th-hotel-simple/client/src/services/healthService.ts
2026-07-08 16:20:06 +08:00

7 lines
242 B
TypeScript

import { getJson } from '@/services/httpClient'
import type { BackendHealthResult } from '@/types/reservation'
export async function fetchBackendHealth(): Promise<BackendHealthResult> {
return getJson<BackendHealthResult>('/api/health')
}