[www] add basic room list

This commit is contained in:
Devin Zuczek
2026-08-10 10:26:39 -04:00
parent d461961e54
commit 7fbaad1fd8
8 changed files with 319 additions and 9 deletions
+2
View File
@@ -16,6 +16,7 @@ import {
notifyBase,
postAuthForm,
readAuthError,
roomsBase,
} from './upstream'
import type { App } from './context'
@@ -67,6 +68,7 @@ const app = new Hono<App>()
api: apiBase(c.env),
img: imgBase(c.env),
notify: notifyBase(c.env),
rooms: roomsBase(c.env),
},
})
})