MCPcopy
hub / github.com/fastapi/fastapi / get_deps

Function get_deps

tests/test_repeated_dependency_schema.py:17–18  ·  view source on GitHub ↗
(dep1: str = Depends(get_header), dep2: str = Depends(get_something_else))

Source from the content-addressed store, hash-verified

15
16@app.get("/")
17def get_deps(dep1: str = Depends(get_header), dep2: str = Depends(get_something_else)):
18 return {"dep1": dep1, "dep2": dep2}
19
20
21client = TestClient(app)

Callers

nothing calls this directly

Calls 1

DependsClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…