2025-06-04 13:30:16 +08:00
|
|
|
"""
|
|
|
|
|
Callback modules for the dashboard.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from .navigation import register_navigation_callbacks
|
|
|
|
|
from .charts import register_chart_callbacks
|
|
|
|
|
from .indicators import register_indicator_callbacks
|
|
|
|
|
from .system_health import register_system_health_callbacks
|
2025-06-12 18:29:39 +08:00
|
|
|
from .realtime_strategies import register_realtime_strategy_callbacks
|
2025-06-04 13:30:16 +08:00
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
'register_navigation_callbacks',
|
|
|
|
|
'register_chart_callbacks',
|
|
|
|
|
'register_indicator_callbacks',
|
2025-06-12 18:29:39 +08:00
|
|
|
'register_system_health_callbacks',
|
|
|
|
|
'register_realtime_strategy_callbacks'
|
2025-06-04 13:30:16 +08:00
|
|
|
]
|