mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 18:18:38 +00:00
17 lines
441 B
TypeScript
17 lines
441 B
TypeScript
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
features: {
|
|
doctorLegacyState: true,
|
|
},
|
|
plugin: {
|
|
specifier: "./api.js",
|
|
exportName: "imessageSetupPlugin",
|
|
},
|
|
doctorLegacyState: {
|
|
specifier: "./doctor-legacy-state-api.js",
|
|
exportName: "detectIMessageLegacyStateMigrations",
|
|
},
|
|
});
|