mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 11:31:34 +00:00
21 lines
519 B
TypeScript
21 lines
519 B
TypeScript
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",
|
|
},
|
|
});
|