12 lines
281 B
Python
12 lines
281 B
Python
|
|
"""
|
||
|
|
Dashboard package for the Crypto Trading Bot Dashboard.
|
||
|
|
|
||
|
|
This package contains modular dashboard components:
|
||
|
|
- layouts: UI layout definitions
|
||
|
|
- callbacks: Dash callback functions
|
||
|
|
- components: Reusable UI components
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .app import create_app
|
||
|
|
|
||
|
|
__all__ = ['create_app']
|