AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
health.ts
根目录
/
workers
/
crash-report
/
src
/
registry
/
routes
/
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