Files
fastapi-users/fastapi_users/__init__.py
Alexandr Makurin e6125905e0 Fix #865 (#866)
* Fix #865

* Add # pragma: no cover to all try blocks

* Fix same issue with root module
2022-01-15 10:50:06 +01:00

18 lines
411 B
Python

"""Ready-to-use and customizable users management for FastAPI."""
__version__ = "9.2.1"
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,
)
__all__ = [
"models",
"FastAPIUsers",
"BaseUserManager",
"InvalidPasswordException",
]