mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 22:10:51 +00:00
18 lines
664 B
TypeScript
18 lines
664 B
TypeScript
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,
|
|
};
|