eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
15 lines (14 loc) • 487 B
TypeScript
import type { H3Event } from "nitro";
/**
* Nitro route for eve's health endpoint.
*
* The health endpoint is intentionally always-public so platform load
* balancers and uptime monitors can probe it without credentials.
* Channels that need authenticated health probes should author their own
* channel file with the verifier helpers from
* `eve/channels/auth`.
*/
declare const _default: (_event: H3Event<{
body: unknown;
}>) => Promise<Response>;
export default _default;