(request: Request)
| 309 | |
| 310 | @app.get("/", response_class=HTMLResponse) |
| 311 | async def index(request: Request): |
| 312 | redirect_response = _guard_page_request(request) |
| 313 | if redirect_response: |
| 314 | return redirect_response |
| 315 | return _render_template(request, "index.html") |
| 316 | |
| 317 | @app.get("/accounts", response_class=HTMLResponse) |
| 318 | async def accounts_page(request: Request): |
nothing calls this directly
no test coverage detected