2026-03-16 23:52:23 -07:00

12 lines
395 B
TypeScript

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