mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-11 04:56:41 +00:00
✨ Import and re-export data structures from Starlette, used by Request properties, on fastapi.datastructures (#1872)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
parent
6a74f3a0c1
commit
4eada92883
1 changed files with 5 additions and 0 deletions
|
|
@ -1,5 +1,10 @@
|
||||||
from typing import Any, Callable, Iterable, Type, TypeVar
|
from typing import Any, Callable, Iterable, Type, TypeVar
|
||||||
|
|
||||||
|
from starlette.datastructures import URL as URL # noqa: F401
|
||||||
|
from starlette.datastructures import Address as Address # noqa: F401
|
||||||
|
from starlette.datastructures import FormData as FormData # noqa: F401
|
||||||
|
from starlette.datastructures import Headers as Headers # noqa: F401
|
||||||
|
from starlette.datastructures import QueryParams as QueryParams # noqa: F401
|
||||||
from starlette.datastructures import State as State # noqa: F401
|
from starlette.datastructures import State as State # noqa: F401
|
||||||
from starlette.datastructures import UploadFile as StarletteUploadFile
|
from starlette.datastructures import UploadFile as StarletteUploadFile
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue