10 lines
205 B
Python
10 lines
205 B
Python
"""Streamlit dashboard for real-time monitoring.
|
|
|
|
Provides visualisation of instrument status, test progress,
|
|
and historical results.
|
|
"""
|
|
|
|
from py_dvt_ate.app.dashboard.app import main
|
|
|
|
__all__ = ["main"]
|