service_man/api/presentation/routers/__init__.py

10 lines
176 B
Python

from .auth import auth_router
from .ping import healthcheck_router
from .user import user_router
__all__ = (
"healthcheck_router",
"auth_router",
"user_router",
)