1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { Hono } from "hono"; import { Context } from "@karakeep/trpc"; const health = new Hono<{ Variables: { ctx: Context; }; }>().get("/", (c) => { return c.json({ status: "ok", message: "Web app is working", }); }); export default health;