Files
openclaw/extensions/matrix/setup-entry.ts
T

14 lines
366 B
TypeScript
Raw Normal View History

import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
2026-03-15 18:46:22 -07:00
export default defineBundledChannelSetupEntry({
importMetaUrl: import.meta.url,
plugin: {
2026-04-05 20:16:57 -04:00
specifier: "./channel-plugin-api.js",
exportName: "matrixPlugin",
},
secrets: {
specifier: "./src/secret-contract.js",
exportName: "channelSecrets",
},
});