Files
openclaw/extensions/bluebubbles/index.ts
2026-04-04 07:39:53 +01:00

15 lines
516 B
TypeScript

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/channel-core";
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({
id: "bluebubbles",
name: "BlueBubbles",
description: "BlueBubbles channel plugin (macOS app)",
plugin: bluebubblesPlugin,
setRuntime: setBlueBubblesRuntime,
});