Run biome check and add ChatError component

This commit is contained in:
James Blair 2026-05-08 20:33:24 +12:00
parent 6a5041be43
commit 08f45451bb
Signed by: james
SSH key fingerprint: SHA256:hsDR3ENI2ZMgh+CNb+0PrFsj29DI007R+BMKUVGi6zQ
13 changed files with 228 additions and 136 deletions

View file

@ -1,5 +1,5 @@
import Elysia from "elysia";
import { health } from "./modules/health";
import { chat } from "./modules/chat";
import { health } from "./modules/health";
export const app = new Elysia({ prefix: "/api" }).use(health).use(chat);