Coverage for docs_src / dependencies / tutorial001_02_an_py310.py: 100%
12 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 typing import Annotated 1abc
3from fastapi import Depends, FastAPI 1abc
5app = FastAPI() 1abc
8async def common_parameters(q: str | None = None, skip: int = 0, limit: int = 100): 1abc
9 return {"q": q, "skip": skip, "limit": limit} 1def
12CommonsDep = Annotated[dict, Depends(common_parameters)] 1abc
15@app.get("/items/") 1abc
16async def read_items(commons: CommonsDep): 1abc
17 return commons 1def
20@app.get("/users/") 1abc
21async def read_users(commons: CommonsDep): 1abc
22 return commons 1def