service_man/api/presentation/routers/__init__.py

12 lines
234 B
Python

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