- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for get_sub_counter (0.11 seconds)
-
tests/test_dependency_cache.py
return count @app.get("/counter/") async def get_counter(count: int = Depends(dep_counter)): return {"counter": count} @app.get("/sub-counter/") 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(
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)