18 lines
566 B
TypeScript
Raw Normal View History

import type { OpenClawPluginApi } from "openclaw/plugin-sdk/googlechat";
import { emptyPluginConfigSchema } from "openclaw/plugin-sdk/googlechat";
import { googlechatPlugin } from "./src/channel.js";
2026-01-23 16:45:37 -06:00
import { setGoogleChatRuntime } from "./src/runtime.js";
const plugin = {
id: "googlechat",
name: "Google Chat",
2026-01-30 03:15:10 +01:00
description: "OpenClaw Google Chat channel plugin",
2026-01-23 16:45:37 -06:00
configSchema: emptyPluginConfigSchema(),
2026-01-30 03:15:10 +01:00
register(api: OpenClawPluginApi) {
2026-01-23 16:45:37 -06:00
setGoogleChatRuntime(api.runtime);
api.registerChannel(googlechatPlugin);
2026-01-23 16:45:37 -06:00
},
};
export default plugin;