15 lines
498 B
TypeScript
Raw Normal View History

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
import { googlechatPlugin } from "./src/channel.js";
2026-01-23 16:45:37 -06:00
import { setGoogleChatRuntime } from "./src/runtime.js";
export { googlechatPlugin } from "./src/channel.js";
export { setGoogleChatRuntime } from "./src/runtime.js";
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",
plugin: googlechatPlugin,
setRuntime: setGoogleChatRuntime,
});