mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-30 14:43:40 +00:00
13 lines
464 B
TypeScript
13 lines
464 B
TypeScript
// Migrate Hermes plugin entrypoint registers its OpenClaw integration.
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { buildHermesMigrationProvider } from "./provider.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "migrate-hermes",
|
|
name: "Hermes Migration",
|
|
description: "Imports Hermes state into OpenClaw.",
|
|
register(api) {
|
|
api.registerMigrationProvider(buildHermesMigrationProvider({ runtime: api.runtime }));
|
|
},
|
|
});
|