7 lines
242 B
TypeScript
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')
|
|
}
|