fix: two-user model bug fixes and docs

This commit is contained in:
2026-05-29 22:29:59 +00:00
parent cb683f7e61
commit c091063248
6 changed files with 20 additions and 19 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ def create_app() -> web.Application:
app = web.Application()
app.router.add_route("GET", "/health", _health)
app.router.add_route("POST", "/batch", _handle_batch)
app.router.add_route("{tail:.*}", _catch_all)
app.router.add_route("*", "/{tail:.*}", _catch_all)
return app