Really-amin's picture
Preserve Short Hunter datasource gateway compatibility and fixes
ec64180 verified
Raw
History Blame Contribute Delete
761 Bytes
"""Provider adapter package for Short Hunter datasource gateway.
Exports all provider modules so short_hunter_routes.py can do:
from providers import kucoin_futures, binance_public, coingecko, ...
No private exchange credentials are stored here. All adapters use public
market-data endpoints only.
"""
from . import (
alternative_me,
binance_public,
cache,
coingecko,
cryptocompare,
health,
kucoin_futures,
market_math,
news,
registry,
provider_catalog,
router,
)
__all__ = [
"alternative_me",
"binance_public",
"cache",
"coingecko",
"cryptocompare",
"health",
"kucoin_futures",
"market_math",
"news",
"registry",
"provider_catalog",
"router",
]