mirror of
https://github.com/openhop-dev/openhop_repeater.git
synced 2026-09-09 14:15:33 +00:00
- Introduced tests for the plugin catalogue installation and update flows in `test_plugin_catalogue_install.py`. - Added unit tests for the GitHub Releases plugin client in `test_plugin_github_releases.py`. - Implemented IPC tests for the plugin manager Unix socket protocol in `test_plugin_ipc.py`. - Created lifecycle and installation tests for the plugin manager in `test_plugin_manager_lifecycle.py`. - Added tests for plugin manifest parsing in `test_plugin_manifest.py`. - Developed tests for plugin filesystem layout and state management in `test_plugin_storage.py`.
17 lines
460 B
Python
17 lines
460 B
Python
from .api_endpoints import APIEndpoints
|
|
from .cad_calibration_engine import CADCalibrationEngine
|
|
from .http_server import HTTPStatsServer, LogBuffer, StatsApp, _log_buffer
|
|
from .plugin_endpoints import PluginAPIEndpoints
|
|
from .update_endpoints import UpdateAPIEndpoints
|
|
|
|
__all__ = [
|
|
"HTTPStatsServer",
|
|
"StatsApp",
|
|
"LogBuffer",
|
|
"APIEndpoints",
|
|
"CADCalibrationEngine",
|
|
"PluginAPIEndpoints",
|
|
"UpdateAPIEndpoints",
|
|
"_log_buffer",
|
|
]
|