Files
nginx-proxy-manager/frontend/src/api/backend/getHealth.ts
2025-10-02 08:12:36 +10:00

9 lines
191 B
TypeScript

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