import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract"; export default defineBundledChannelEntry({ id: "buzz", name: "Buzz", description: "Connect OpenClaw agents to Buzz rooms", importMetaUrl: import.meta.url, plugin: { specifier: "./channel-plugin-api.js", exportName: "buzzPlugin", }, secrets: { specifier: "./secret-contract-api.js", exportName: "channelSecrets", }, runtime: { specifier: "./api.js", exportName: "setBuzzRuntime", }, });