donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
19 lines • 479 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PingApi = void 0;
/**
* API endpoints for basic health/connectivity checks.
*/
class PingApi {
/**
* No-op endpoint that just returns HTTP 200.
*
* @param _req - Express request object (unused)
* @param res - Express response object
*/
async ping(_req, res) {
res.sendStatus(200);
}
}
exports.PingApi = PingApi;
//# sourceMappingURL=PingApi.js.map