mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-14 18:58:10 +08:00
4 lines
91 B
Python
4 lines
91 B
Python
from typing import Any, Union
|
|
|
|
OpenAPIResponseType = dict[Union[int, str], dict[str, Any]]
|