Files
openclaw/extensions/googlechat/index.ts
2026-03-16 23:52:23 -07:00

12 lines
387 B
TypeScript

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