15 lines
508 B
TypeScript
Raw Normal View History

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
2026-01-18 03:17:30 +00:00
import { bluebubblesPlugin } from "./src/channel.js";
import { setBlueBubblesRuntime } from "./src/runtime.js";
export { bluebubblesPlugin } from "./src/channel.js";
export { setBlueBubblesRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
2026-01-18 03:17:30 +00:00
id: "bluebubbles",
name: "BlueBubbles",
description: "BlueBubbles channel plugin (macOS app)",
plugin: bluebubblesPlugin,
setRuntime: setBlueBubblesRuntime,
});