service_man/api/presentation/routers/__init__.py

8 lines
127 B
Python
Raw Normal View History

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",
"user_router",
)