"""svrnty-hermes-webui-plugin — Python package wrapper around plugin.py.""" from pathlib import Path import sys # Make the top-level plugin.py + routes/ importable when installed via pip. _ROOT = Path(__file__).resolve().parent.parent if str(_ROOT) not in sys.path: sys.path.insert(0, str(_ROOT)) from plugin import register # noqa: E402,F401