Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for get_async_wrapped_gen_dependency (0.11 sec)

  1. tests/test_dependency_wrapped.py

    @app.get("/async-wrapped-dependency/")
    async def get_async_wrapped_dependency(value: bool = Depends(async_wrapped_dependency)):
        return value
    
    
    @app.get("/async-wrapped-gen-dependency/")
    async def get_async_wrapped_gen_dependency(
        value: bool = Depends(async_wrapped_gen_dependency),
    ):
        return value
    
    
    @app.get("/wrapped-class-instance-dependency/")
    async def get_wrapped_class_instance_dependency(
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top