21 lines
583 B
TypeScript
21 lines
583 B
TypeScript
/**
|
|
* API of the server (auto-generated code)
|
|
*/
|
|
import { HTTPMimeType, HTTPRequestModel, ModelResponseHttp, RESTConfig, RESTRequestJson, RESTRequestJsonArray } from "./rest-tools"
|
|
import {RestErrorResponse, isHealthResult, HealthResult, } from "./model"
|
|
export namespace HealthCheck {
|
|
|
|
export function getHealth({ restConfig, }: {
|
|
restConfig: RESTConfig,
|
|
}): Promise<HealthResult> {
|
|
return RESTRequestJson({
|
|
restModel: {
|
|
endPoint: "/health_check",
|
|
requestType: HTTPRequestModel.GET,
|
|
accept: HTTPMimeType.JSON,
|
|
},
|
|
restConfig,
|
|
}, isHealthResult);
|
|
};
|
|
}
|