coingecko-openapi-client
Version:
Coingecko openapi client
23 lines (22 loc) • 509 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PingService = void 0;
class PingService {
constructor(httpRequest) {
this.httpRequest = httpRequest;
}
/**
* Check API server status
* Check API server status
*
* @returns any Status OK
* @throws ApiError
*/
getPing() {
return this.httpRequest.request({
method: 'GET',
url: '/ping',
});
}
}
exports.PingService = PingService;