9 lines
347 B
TypeScript
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');
|
|
}
|