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