mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-24 05:59:33 +00:00
19 lines
721 B
TypeScript
19 lines
721 B
TypeScript
// Googlechat plugin module implements channel behavior.
|
|
import {
|
|
probeGoogleChat as probeGoogleChatImpl,
|
|
sendGoogleChatMessage as sendGoogleChatMessageImpl,
|
|
uploadGoogleChatAttachment as uploadGoogleChatAttachmentImpl,
|
|
} from "./api.js";
|
|
import {
|
|
resolveGoogleChatWebhookPath as resolveGoogleChatWebhookPathImpl,
|
|
startGoogleChatMonitor as startGoogleChatMonitorImpl,
|
|
} from "./monitor.js";
|
|
|
|
export const googleChatChannelRuntime = {
|
|
probeGoogleChat: probeGoogleChatImpl,
|
|
sendGoogleChatMessage: sendGoogleChatMessageImpl,
|
|
uploadGoogleChatAttachment: uploadGoogleChatAttachmentImpl,
|
|
resolveGoogleChatWebhookPath: resolveGoogleChatWebhookPathImpl,
|
|
startGoogleChatMonitor: startGoogleChatMonitorImpl,
|
|
};
|