Files
openclaw/extensions/bluebubbles/setup-entry.ts
2026-04-06 16:40:41 +01:00

14 lines
361 B
TypeScript

import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelSetupEntry({
importMetaUrl: import.meta.url,
plugin: {
specifier: "./api.js",
exportName: "bluebubblesSetupPlugin",
},
secrets: {
specifier: "./src/secret-contract.js",
exportName: "channelSecrets",
},
});