Files
meshcore-bot/web_viewer/__init__.py
T
agessaman 8a65f48028 refactor(web_viewer): move modules/web_viewer/ to top-level web_viewer/
Physically separates the web viewer from the bot package. Entry point
updated to web_viewer.app:main, pyproject.toml packages/package-data
updated accordingly. Fixed bot_root path calculation (was ../../ from
modules/web_viewer, now ../ from web_viewer). All 2866 tests pass.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 21:13:13 -07:00

12 lines
346 B
Python

"""
Web Viewer Module for MeshCore Bot
This module provides a web-based data viewer for the MeshCore Bot,
allowing users to visualize bot databases and monitor real-time data.
"""
from .app import BotDataViewer
from .integration import BotIntegration, WebViewerIntegration
__all__ = ['BotDataViewer', 'WebViewerIntegration', 'BotIntegration']