COBY : specs + task 1
This commit is contained in:
17
COBY/interfaces/__init__.py
Normal file
17
COBY/interfaces/__init__.py
Normal file
@ -0,0 +1,17 @@
|
||||
"""
|
||||
Interface definitions for the multi-exchange data aggregation system.
|
||||
"""
|
||||
|
||||
from .exchange_connector import ExchangeConnector
|
||||
from .data_processor import DataProcessor
|
||||
from .aggregation_engine import AggregationEngine
|
||||
from .storage_manager import StorageManager
|
||||
from .replay_manager import ReplayManager
|
||||
|
||||
__all__ = [
|
||||
'ExchangeConnector',
|
||||
'DataProcessor',
|
||||
'AggregationEngine',
|
||||
'StorageManager',
|
||||
'ReplayManager'
|
||||
]
|
Reference in New Issue
Block a user