15 lines
385 B
Python
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'
|
||
|
|
]
|