14 lines
301 B
Python
14 lines
301 B
Python
|
|
"""
|
||
|
|
OKX Exchange integration.
|
||
|
|
|
||
|
|
This module provides OKX-specific implementations for data collection,
|
||
|
|
including WebSocket client and data collector classes.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .collector import OKXCollector
|
||
|
|
from .websocket import OKXWebSocketClient
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'OKXCollector',
|
||
|
|
'OKXWebSocketClient',
|
||
|
|
]
|