Files
openclaw/extensions/googlechat/src/channel.setup.ts
2026-06-04 21:33:54 -04:00

8 lines
374 B
TypeScript

// Googlechat plugin module implements channel.setup behavior.
import type { ChannelPlugin } from "openclaw/plugin-sdk/channel-core";
import type { ResolvedGoogleChatAccount } from "./accounts.js";
import { createGoogleChatPluginBase } from "./channel-base.js";
export const googlechatSetupPlugin: ChannelPlugin<ResolvedGoogleChatAccount> =
createGoogleChatPluginBase();