(asset_path: str)
| 830 | |
| 831 | @app.get("/assets/{asset_path:path}", include_in_schema=False) |
| 832 | async def theme_asset(asset_path: str): |
| 833 | return FileResponse(resolve_theme_file("assets", asset_path)) |
| 834 | |
| 835 | |
| 836 | @app.exception_handler(404) |
nothing calls this directly
no test coverage detected