mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-05 01:45:14 +00:00
9 lines
191 B
TypeScript
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: "/",
|
|
});
|
|
}
|