TradingAgents/tradingagents/api/routes/__init__.py

7 lines
207 B
Python

"""API routes."""
from tradingagents.api.routes.auth import router as auth_router
from tradingagents.api.routes.strategies import router as strategies_router
__all__ = ["auth_router", "strategies_router"]