Files
gogo2/COBY/web/__init__.py
Dobromir Popov 42cf02cf3a web dash
2025-08-04 20:28:48 +03:00

11 lines
199 B
Python

"""
Web dashboard for the COBY system.
"""
from .dashboard_server import create_dashboard_app
from .static_handler import StaticHandler
__all__ = [
'create_dashboard_app',
'StaticHandler'
]