Coverage for docs_src/dependencies/tutorial001_an_py39.py: 100%
11 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
1from typing import Annotated, Union 1abcd
3from fastapi import Depends, FastAPI 1abcd
5app = FastAPI() 1abcd
8async def common_parameters( 1abcd
9 q: Union[str, None] = None, skip: int = 0, limit: int = 100
10):
11 return {"q": q, "skip": skip, "limit": limit} 1abcd
14@app.get("/items/") 1abcd
15async def read_items(commons: Annotated[dict, Depends(common_parameters)]): 1abcd
16 return commons 1abcd
19@app.get("/users/") 1abcd
20async def read_users(commons: Annotated[dict, Depends(common_parameters)]): 1abcd
21 return commons 1abcd