netadm/authentication/routers/__init__.py

8 lines
136 B
Python
Raw Normal View History

2024-10-02 15:50:50 +00:00
from .auth import router as auth_router
from .users import router as users_router
__all__ = [
"auth_router",
"users_router",
]