feat: query language docs page at /dashboard/docs

This commit is contained in:
M1
2026-03-16 14:00:29 +04:00
parent 27c9044a8b
commit 33d1209ac9
3 changed files with 212 additions and 1 deletions
+2 -1
View File
@@ -11,4 +11,5 @@ export const dashboard = new Elysia()
.get("/dashboard", () => Bun.file(`${dir}/index.html`), hide)
.get("/dashboard/home", () => Bun.file(`${dir}/home.html`), hide)
.get("/dashboard/monitors/new", () => Bun.file(`${dir}/new.html`), hide)
.get("/dashboard/monitors/:id", () => Bun.file(`${dir}/detail.html`), hide);
.get("/dashboard/monitors/:id", () => Bun.file(`${dir}/detail.html`), hide)
.get("/dashboard/docs", () => Bun.file(`${dir}/docs.html`), hide);