import * as api from "./base"; import type { HealthResponse } from "./responseTypes"; export async function getHealth(): Promise { return await api.get({ url: "/", }); }