mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 06:16:46 +00:00
25 lines
641 B
TypeScript
25 lines
641 B
TypeScript
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
features: {
|
|
doctorLegacyState: true,
|
|
},
|
|
plugin: {
|
|
specifier: "./setup-plugin-api.js",
|
|
exportName: "matrixSetupPlugin",
|
|
},
|
|
secrets: {
|
|
specifier: "./secret-contract-api.js",
|
|
exportName: "channelSecrets",
|
|
},
|
|
runtime: {
|
|
specifier: "./runtime-setter-api.js",
|
|
exportName: "setMatrixRuntime",
|
|
},
|
|
doctorLegacyState: {
|
|
specifier: "./doctor-legacy-state-api.js",
|
|
exportName: "detectMatrixLegacyStateMigrations",
|
|
},
|
|
});
|