Files
openclaw/extensions/matrix/setup-entry.ts
Peter Steinberger 8604da8e16 Reapply "refactor: move runtime state to SQLite"
This reverts commit 694ca50e97.
2026-05-27 13:27:43 +01:00

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",
},
});