aboutsummaryrefslogtreecommitdiffstats
path: root/packages/api/routes/health.ts
blob: 64c2d45be3ffc8bcf6f7553c1c6c4218bdb8c745 (plain) (blame)
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;