mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-12 13:52:15 +00:00
7 lines
279 B
Python
7 lines
279 B
Python
"""Bridge module — delegates plugin registration to hermes_agent_telegram."""
|
|
|
|
|
|
def register(ctx):
|
|
"""Plugin entry point — delegates to the inner hermes_agent_telegram package."""
|
|
from hermes_agent_telegram import register as _inner_register
|
|
_inner_register(ctx)
|