Move app/databus/providers.py to app/databus/providers/__init__.py and add chain-family submodule files: - app/databus/providers/solana.py - Birdeye + SolanaTracker - app/databus/providers/evm.py - Alchemy + Moralis + Etherscan - app/databus/providers/btc.py - Blockchair - app/databus/providers/free_tier.py - CoinGecko, DexScreener, DefiLlama, news, local - app/databus/providers/paid_tier.py - Arkham, Santiment, Dune, VirusTotal - app/databus/providers/mcp_servers.py - MCP bridge The legacy app/databus/providers.py becomes a 10-line re-export shim. Public API fully preserved. Routes unchanged (56). Phase 3B of AUDIT-2026-Q3.md.
10 lines
302 B
Python
10 lines
302 B
Python
"""Backward-compat shim — moved to app.databus.providers package in P3B."""
|
|
from app.databus.providers import * # noqa: F401,F403
|
|
from app.databus.providers import ( # noqa: F401
|
|
Provider,
|
|
ProviderChain,
|
|
ProviderTier,
|
|
_CircuitBreaker,
|
|
_RateLimiter,
|
|
build_provider_chains,
|
|
)
|