storage manager

This commit is contained in:
Dobromir Popov
2025-08-04 21:50:11 +03:00
parent 42cf02cf3a
commit db61f3c3bf
8 changed files with 1306 additions and 836 deletions

View File

@ -1,11 +1,11 @@
"""
Storage layer for the COBY system.
Storage layer for the multi-exchange data aggregation system.
Provides TimescaleDB integration, connection pooling, and schema management.
"""
from .timescale_manager import TimescaleManager
from .connection_pool import DatabaseConnectionPool
from .connection_pool import ConnectionPoolManager
from .schema import SchemaManager
from .storage_manager import StorageManager
__all__ = [
'TimescaleManager',
'DatabaseConnectionPool'
]
__all__ = ['TimescaleManager', 'ConnectionPoolManager', 'SchemaManager', 'StorageManager']