donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
16 lines • 375 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.
*/
async ping(_req, res) {
res.sendStatus(200);
}
}
exports.PingApi = PingApi;
//# sourceMappingURL=PingApi.js.map