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

9 lines
347 B
TypeScript

import { getJson } from '../../shared/api/http';
import { cloudApiUrl } from '../../shared/config/env';
import type { EdgeResponse } from './types';
/** Возвращает список буровых, доступных в cloud-v3. */
export function getEdges(): Promise<EdgeResponse> {
return getJson<EdgeResponse>(cloudApiUrl, '/edge');
}