11 lines
199 B
Python
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'
|
|
] |