- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for get_sub_counter_no_cache (0.1 seconds)
-
tests/test_dependency_cache.py
async def get_sub_counter( subcount: int = Depends(super_dep), count: int = Depends(dep_counter) ): return {"counter": count, "subcounter": subcount} @app.get("/sub-counter-no-cache/") async def get_sub_counter_no_cache( subcount: int = Depends(super_dep), count: int = Depends(dep_counter, use_cache=False), ): return {"counter": count, "subcounter": subcount} @app.get("/scope-counter")
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Aug 23 13:30:24 GMT 2022 - 2.7K bytes - Click Count (0)