mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 21:56:51 +00:00
21 lines
533 B
TypeScript
21 lines
533 B
TypeScript
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
features: {
|
|
doctorLegacyState: true,
|
|
},
|
|
plugin: {
|
|
specifier: "./setup-api.js",
|
|
exportName: "feishuPlugin",
|
|
},
|
|
secrets: {
|
|
specifier: "./secret-contract-api.js",
|
|
exportName: "channelSecrets",
|
|
},
|
|
doctorLegacyState: {
|
|
specifier: "./doctor-legacy-state-api.js",
|
|
exportName: "detectFeishuLegacyStateMigrations",
|
|
},
|
|
});
|