Sebastián Ramírez
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
0 additions and
14 deletions
-
fastapi/applications.py
-
fastapi/routing.py
|
|
@ -86,13 +86,6 @@ class FastAPI(Starlette): |
|
|
|
**Note**: you probably shouldn't use this parameter, it is inherited |
|
|
|
from Starlette and supported for compatibility. |
|
|
|
|
|
|
|
In FastAPI, you normally would use the *path operation* decorators, |
|
|
|
like: |
|
|
|
|
|
|
|
* `app.get()` |
|
|
|
* `app.post()` |
|
|
|
* etc. |
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
A list of routes to serve incoming HTTP and WebSocket requests. |
|
|
|
|
|
@ -624,13 +624,6 @@ class APIRouter(routing.Router): |
|
|
|
**Note**: you probably shouldn't use this parameter, it is inherited |
|
|
|
from Starlette and supported for compatibility. |
|
|
|
|
|
|
|
In FastAPI, you normally would use the *path operation* decorators, |
|
|
|
like: |
|
|
|
|
|
|
|
* `router.get()` |
|
|
|
* `router.post()` |
|
|
|
* etc. |
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
A list of routes to serve incoming HTTP and WebSocket requests. |
|
|
|