@codacy/codacy-mcp
Version:
Codacy MCP server
21 lines (20 loc) • 541 B
JavaScript
import { OpenAPI } from '../core/OpenAPI.js';
import { request as __request } from '../core/request.js';
export class HealthService {
/**
* Health check endpoint
* Health check endpoint
* @returns HealthCheckResponse Successful operation
* @throws ApiError
*/
static health(abortSignal) {
return __request(OpenAPI, {
method: 'GET',
url: '/health',
abortSignal,
errors: {
500: `Internal Server Error`,
},
});
}
}