Allowed module routes to return static file responses.

This commit is contained in:
2026-02-15 09:15:01 -05:00
parent 067b7c5a0a
commit d55bc2a762
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -162,6 +162,6 @@ class HttpServer:
return web.Response(status=202)
async def _handle_catch_all(self, request: web.Request) -> web.Response:
async def _handle_catch_all(self, request: web.Request) -> web.StreamResponse:
"""Delegate module route requests to the RouteDispatcher."""
return await self._route_dispatcher.dispatch(request)