mirror of
https://ghfast.top/https://github.com/aeroxw/tick-stock-panel.git
synced 2026-09-12 16:44:15 +08:00
9 lines
346 B
Python
9 lines
346 B
Python
"""Market data provider abstraction.
|
|
|
|
Providers normalize external data sources into the internal parquet schema.
|
|
"""
|
|
from app.data_providers.base import AssetType, MarketDataProvider, ProviderCapabilities
|
|
from app.data_providers.registry import get_provider
|
|
|
|
__all__ = ["AssetType", "MarketDataProvider", "ProviderCapabilities", "get_provider"]
|