2026-03-16 23:51:41 -07:00
|
|
|
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
2026-03-16 00:09:28 -07:00
|
|
|
import { googlechatPlugin } from "./src/channel.js";
|
2026-01-23 16:45:37 -06:00
|
|
|
import { setGoogleChatRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-17 09:33:17 -07:00
|
|
|
export { googlechatPlugin } from "./src/channel.js";
|
|
|
|
|
export { setGoogleChatRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-16 23:51:41 -07:00
|
|
|
export default defineChannelPluginEntry({
|
2026-01-23 16:45:37 -06:00
|
|
|
id: "googlechat",
|
|
|
|
|
name: "Google Chat",
|
2026-01-30 03:15:10 +01:00
|
|
|
description: "OpenClaw Google Chat channel plugin",
|
2026-03-16 23:51:41 -07:00
|
|
|
plugin: googlechatPlugin,
|
|
|
|
|
setRuntime: setGoogleChatRuntime,
|
|
|
|
|
});
|