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