streamion-2 / src /routes /health.ts
cursorpro's picture
Upload 57 files
4d612cb verified
raw
history blame contribute delete
222 Bytes
import { Hono } from "hono";
const health = new Hono();
health.get("/", () => {
return new Response("OK", {
status: 200,
headers: { "Content-Type": "text/plain" },
});
});
export default health;