netadm/authentication/dependencies/__init__.py

12 lines
284 B
Python
Raw Permalink Normal View History

2024-10-02 15:50:50 +00:00
from .access_tokens import get_access_tokens_db
from .users import get_users_db
from .user_manager import get_user_manager
from .backend import authentication_backend
__all__ = (
"get_access_tokens_db",
"get_users_db",
"get_user_manager",
"authentication_backend",
)