elysia set up with websockets

This commit is contained in:
2025-12-13 20:38:06 +11:00
parent 6951b71490
commit 356eb58381
6 changed files with 116 additions and 19 deletions

View File

@@ -0,0 +1,6 @@
import { Elysia } from "elysia";
export const health = new Elysia()
.get("/healthz", () => {
return "ok";
})