export interface HealthResponse {
    status: 'ok' | 'error';
    supabase: 'connected' | 'disconnected';
    timestamp: string;
}
