Coverage for docs_src / behind_a_proxy / tutorial002_py310.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from fastapi import FastAPI, Request 1abcd
3app = FastAPI(root_path="/api/v1") 1abcd
6@app.get("/app") 1abcd
7def read_main(request: Request): 1abcd
8 return {"message": "Hello World", "root_path": request.scope.get("root_path")} 1efg