mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-14 08:04:17 +00:00
17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
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",
|
|
},
|
|
});
|