mirror of
https://github.com/agessaman/meshcore-bot.git
synced 2026-06-04 06:41:21 +00:00
8a65f48028
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>
12 lines
346 B
Python
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']
|