Vasily.onl 010adb30f0 Implement modular architecture for Crypto Trading Bot Dashboard
- Introduced a new modular structure for the dashboard, enhancing maintainability and scalability.
- Created main application entry point in `app_new.py`, integrating all components and callbacks.
- Developed layout modules for market data, bot management, performance analytics, and system health in the `layouts` directory.
- Implemented callback modules for navigation, charts, indicators, and system health in the `callbacks` directory.
- Established reusable UI components in the `components` directory, including chart controls and indicator modals.
- Enhanced documentation to reflect the new modular structure and provide clear usage guidelines.
- Ensured all components are under 300-400 lines for better readability and maintainability.
2025-06-04 13:30:16 +08:00

15 lines
385 B
Python

"""
Layout modules for the dashboard.
"""
from .market_data import get_market_data_layout
from .bot_management import get_bot_management_layout
from .performance import get_performance_layout
from .system_health import get_system_health_layout
__all__ = [
'get_market_data_layout',
'get_bot_management_layout',
'get_performance_layout',
'get_system_health_layout'
]