mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-21 23:11:01 +00:00
20 lines
905 B
TypeScript
20 lines
905 B
TypeScript
import { sendBlueBubblesMedia as sendBlueBubblesMediaImpl } from "./media-send.js";
|
|
import {
|
|
monitorBlueBubblesProvider as monitorBlueBubblesProviderImpl,
|
|
resolveBlueBubblesMessageId as resolveBlueBubblesMessageIdImpl,
|
|
resolveWebhookPathFromConfig as resolveWebhookPathFromConfigImpl,
|
|
} from "./monitor.js";
|
|
import { probeBlueBubbles as probeBlueBubblesImpl } from "./probe.js";
|
|
import { sendMessageBlueBubbles as sendMessageBlueBubblesImpl } from "./send.js";
|
|
|
|
export type { BlueBubblesProbe } from "./probe.js";
|
|
|
|
export const blueBubblesChannelRuntime = {
|
|
sendBlueBubblesMedia: sendBlueBubblesMediaImpl,
|
|
resolveBlueBubblesMessageId: resolveBlueBubblesMessageIdImpl,
|
|
monitorBlueBubblesProvider: monitorBlueBubblesProviderImpl,
|
|
resolveWebhookPathFromConfig: resolveWebhookPathFromConfigImpl,
|
|
probeBlueBubbles: probeBlueBubblesImpl,
|
|
sendMessageBlueBubbles: sendMessageBlueBubblesImpl,
|
|
};
|