Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for get_synchronous_method_dependency (0.49 sec)

  1. tests/test_dependency_class.py

    async def get_async_callable_gen_dependency(
        value: str = Depends(async_callable_gen_dependency),
    ):
        return value
    
    
    @app.get("/synchronous-method-dependency")
    async def get_synchronous_method_dependency(
        value: str = Depends(methods_dependency.synchronous),
    ):
        return value
    
    
    @app.get("/synchronous-method-gen-dependency")
    async def get_synchronous_method_gen_dependency(
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Aug 09 10:54:05 UTC 2020
    - 3.3K bytes
    - Viewed (0)
Back to top