mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-30 21:33:36 +00:00
8 lines
374 B
TypeScript
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();
|