mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 14:30:57 +00:00
15 lines
498 B
TypeScript
15 lines
498 B
TypeScript
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/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,
|
|
setRuntime: setGoogleChatRuntime,
|
|
});
|