mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-15 11:11:16 +08:00
11 lines
307 B
Python
11 lines
307 B
Python
"""Ready-to-use and customizable users management for FastAPI."""
|
|
|
|
__version__ = "8.1.5"
|
|
|
|
from fastapi_users import models # noqa: F401
|
|
from fastapi_users.fastapi_users import FastAPIUsers # noqa: F401
|
|
from fastapi_users.manager import ( # noqa: F401
|
|
BaseUserManager,
|
|
InvalidPasswordException,
|
|
)
|