This commit is contained in:
Dobromir Popov
2025-08-04 20:28:48 +03:00
parent fd6ec4eb40
commit 42cf02cf3a
6 changed files with 1226 additions and 0 deletions

11
COBY/web/__init__.py Normal file
View File

@ -0,0 +1,11 @@
"""
Web dashboard for the COBY system.
"""
from .dashboard_server import create_dashboard_app
from .static_handler import StaticHandler
__all__ = [
'create_dashboard_app',
'StaticHandler'
]