mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 02:31:24 +00:00
17 lines
446 B
TypeScript
17 lines
446 B
TypeScript
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelEntry({
|
|
id: "bluebubbles",
|
|
name: "BlueBubbles",
|
|
description: "BlueBubbles channel plugin (macOS app)",
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./api.js",
|
|
exportName: "bluebubblesPlugin",
|
|
},
|
|
runtime: {
|
|
specifier: "./runtime-api.js",
|
|
exportName: "setBlueBubblesRuntime",
|
|
},
|
|
});
|