mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-05 16:32:57 +00:00
7 lines
311 B
TypeScript
7 lines
311 B
TypeScript
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();
|