mirror of https://github.com/openclaw/openclaw.git
17 lines
440 B
TypeScript
17 lines
440 B
TypeScript
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelEntry({
|
|
id: "googlechat",
|
|
name: "Google Chat",
|
|
description: "OpenClaw Google Chat channel plugin",
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./api.js",
|
|
exportName: "googlechatPlugin",
|
|
},
|
|
runtime: {
|
|
specifier: "./runtime-api.js",
|
|
exportName: "setGoogleChatRuntime",
|
|
},
|
|
});
|