Files
ui/src/entities/health/api.ts
Первов Артем 31add10e56 decompose structure
2026-06-20 00:51:18 +03:00

9 lines
376 B
TypeScript

import { getJson } from '../../shared/api/http';
import { cloudApiUrl } from '../../shared/config/env';
import type { HealthResponse } from './types';
/** Запрашивает состояние cloud-v3 и подключенной базы данных. */
export function getHealth(): Promise<HealthResponse> {
return getJson<HealthResponse>(cloudApiUrl, '/health');
}