mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
18 lines
512 B
TypeScript
18 lines
512 B
TypeScript
// Imessage plugin module implements setup entry behavior.
|
|
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
features: {
|
|
legacyStateMigrations: true,
|
|
},
|
|
plugin: {
|
|
specifier: "./api.js",
|
|
exportName: "imessageSetupPlugin",
|
|
},
|
|
legacyStateMigrations: {
|
|
specifier: "./legacy-state-migrations-api.js",
|
|
exportName: "detectIMessageLegacyStateMigrations",
|
|
},
|
|
});
|