2026-03-16 23:51:41 -07:00
|
|
|
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";
|
|
|
|
|
|
2026-03-17 09:33:17 -07:00
|
|
|
export { bluebubblesPlugin } from "./src/channel.js";
|
|
|
|
|
export { setBlueBubblesRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-16 23:51:41 -07:00
|
|
|
export default defineChannelPluginEntry({
|
2026-01-18 03:17:30 +00:00
|
|
|
id: "bluebubbles",
|
|
|
|
|
name: "BlueBubbles",
|
|
|
|
|
description: "BlueBubbles channel plugin (macOS app)",
|
2026-03-16 23:51:41 -07:00
|
|
|
plugin: bluebubblesPlugin,
|
|
|
|
|
setRuntime: setBlueBubblesRuntime,
|
|
|
|
|
});
|