返回 DeepSeek-Reasonix
health.ts
1 import { Hono } from "hono";
2 import type { AppEnv } from "../env";
3
4 const health = new Hono<AppEnv>();
5
6 health.get("/health", (c) => c.json({ ok: true, service: "reasonix-registry" }));
7
8 export default health;
9
9 lines TYPESCRIPT