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