mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-18 06:32:24 +08:00
15 lines
381 B
Python
15 lines
381 B
Python
from fastapi_users.db.base import BaseUserDatabase # noqa: F401
|
|
|
|
try:
|
|
from fastapi_users.db.mongodb import MongoDBUserDatabase # noqa: F401
|
|
except ImportError: # pragma: no cover
|
|
pass
|
|
|
|
try:
|
|
from fastapi_users.db.sqlalchemy import ( # noqa: F401
|
|
SQLAlchemyBaseUserTable,
|
|
SQLAlchemyUserDatabase,
|
|
)
|
|
except ImportError: # pragma: no cover
|
|
pass
|