25 lines
708 B
Python
25 lines
708 B
Python
"""
|
|
Main application windows for the Cluster4NPU UI.
|
|
|
|
This module contains the primary application windows including the startup
|
|
dashboard, main pipeline editor, and integrated development environment.
|
|
|
|
Available Windows:
|
|
- DashboardLogin: Startup window with project management
|
|
- IntegratedPipelineDashboard: Main pipeline design interface (future)
|
|
- PipelineEditor: Alternative pipeline editor window (future)
|
|
|
|
Usage:
|
|
from cluster4npu_ui.ui.windows import DashboardLogin
|
|
|
|
dashboard = DashboardLogin()
|
|
dashboard.show()
|
|
"""
|
|
|
|
from .login import DashboardLogin
|
|
from .dashboard import IntegratedPipelineDashboard
|
|
|
|
__all__ = [
|
|
"DashboardLogin",
|
|
"IntegratedPipelineDashboard"
|
|
] |