Files
openclaw/extensions/whatsapp/index.ts
2026-05-22 20:59:21 -07:00

17 lines
441 B
TypeScript

import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelEntry({
id: "whatsapp",
name: "WhatsApp",
description: "WhatsApp channel plugin",
importMetaUrl: import.meta.url,
plugin: {
specifier: "./channel-plugin-api.js",
exportName: "whatsappPlugin",
},
runtime: {
specifier: "./runtime-setter-api.js",
exportName: "setWhatsAppRuntime",
},
});