()
| 769 | @app.get("/setup", include_in_schema=False) |
| 770 | @app.get("/setup/", include_in_schema=False) |
| 771 | async def setup_page(): |
| 772 | if is_runtime_initialized(): |
| 773 | return RedirectResponse(url="/", status_code=303) |
| 774 | return setup_response(build_setup_page()) |
| 775 | |
| 776 | |
| 777 | @app.post("/setup", include_in_schema=False) |
nothing calls this directly
no test coverage detected