Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for APIRouter (0.2 sec)

  1. docs/en/docs/release-notes.md

    ```Python
    from fastapi import APIRouter, Depends
    
    
    async def some_dependency():
        return
    
    
    router = APIRouter(prefix="/users", dependencies=[Depends(some_dependency)])
    ```
    
    **In `include_router`**
    
    Most of these settings are now supported in `APIRouter`, which normally lives closer to the related code, so it is recommended to use `APIRouter` when possible.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top