service_man/api/presentation/routers/__init__.py

12 lines
234 B
Python
Raw Permalink Normal View History

2024-04-01 12:19:10 +03:00
from .auth import auth_router
2024-04-08 17:32:50 +03:00
from .company import company_router
2024-03-31 00:58:43 +03:00
from .ping import healthcheck_router
2024-03-31 01:36:57 +03:00
from .user import user_router
2024-03-31 00:58:43 +03:00
2024-03-31 01:36:57 +03:00
__all__ = (
"healthcheck_router",
2024-04-01 12:19:10 +03:00
"auth_router",
2024-03-31 01:36:57 +03:00
"user_router",
2024-04-08 17:32:50 +03:00
"company_router",
2024-03-31 01:36:57 +03:00
)