convertor/src/pages/healthcheck.tsx
2025-11-02 13:58:57 +01:00

12 lines
221 B
TypeScript

import Elysia from "elysia";
import { userService } from "./user";
export const healthcheck = new Elysia().use(userService).get(
"/healthcheck",
() => {
return { status: "ok" };
},
{
auth: false,
},
);