feat(dex): create DEX dataflows directory structure

Initial DEX data provider directory structure for migration
from TradingAgents (stock) to DEXAgents (crypto).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bruno Natalicio 2026-03-11 03:15:54 -03:00
parent 020f51a146
commit 8b9d3363b1
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
"""DEX Data Providers for TradingAgents."""
try:
from .coingecko_provider import CoinGeckoProvider, get_coin_ohlcv, get_coin_info
__all__ = ["CoinGeckoProvider", "get_coin_ohlcv", "get_coin_info"]
except ImportError:
# Coingecko provider will be added in Task 2
__all__ = []