Files
openclaw/extensions/googlechat/index.ts
2026-04-05 14:20:31 +01:00

16 lines
594 B
TypeScript

import type { ChannelPlugin } from "openclaw/plugin-sdk/channel-core";
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/channel-core";
import { googlechatPlugin } from "./src/channel.js";
import { setGoogleChatRuntime } from "./src/runtime.js";
export { googlechatPlugin } from "./src/channel.js";
export { setGoogleChatRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
id: "googlechat",
name: "Google Chat",
description: "OpenClaw Google Chat channel plugin",
plugin: googlechatPlugin as ChannelPlugin,
setRuntime: setGoogleChatRuntime,
});