Pārlūkot izejas kodu

fix: add __init__.py for plugin loader discovery

Found by Chatto community member PaulK — the plugin loader requires
__init__.py with register() re-exported from adapter.py.
Hermes Agent 1 nedēļu atpakaļ
vecāks
revīzija
12032f8ff2
1 mainītis faili ar 3 papildinājumiem un 0 dzēšanām
  1. 3 0
      __init__.py

+ 3 - 0
__init__.py

@@ -0,0 +1,3 @@
+from .adapter import register
+
+__all__ = ["register"]