import { Elysia } from "elysia"; export const health = new Elysia() .get("/healthz", () => { return "ok"; })