7 lines
118 B
TypeScript
7 lines
118 B
TypeScript
import { Elysia } from "elysia";
|
|
|
|
export const health = new Elysia()
|
|
.get("/healthz", () => {
|
|
return "ok";
|
|
})
|