Files
moltbot/extensions/qqbot/setup-entry.ts
2026-05-10 06:04:32 +01:00

21 lines
555 B
TypeScript

import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelSetupEntry({
importMetaUrl: import.meta.url,
features: {
legacyStateMigrations: true,
},
plugin: {
specifier: "./setup-plugin-api.js",
exportName: "qqbotSetupPlugin",
},
secrets: {
specifier: "./secret-contract-api.js",
exportName: "channelSecrets",
},
legacyStateMigrations: {
specifier: "./legacy-state-migrations-api.js",
exportName: "detectQQBotLegacyStateMigrations",
},
});