2026-03-16 23:51:41 -07:00
|
|
|
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
2026-01-18 08:32:19 +00:00
|
|
|
import { whatsappPlugin } from "./src/channel.js";
|
2026-01-18 11:00:19 +00:00
|
|
|
import { setWhatsAppRuntime } from "./src/runtime.js";
|
2026-01-18 08:32:19 +00:00
|
|
|
|
2026-03-17 09:33:17 -07:00
|
|
|
export { whatsappPlugin } from "./src/channel.js";
|
|
|
|
|
export { setWhatsAppRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-16 23:51:41 -07:00
|
|
|
export default defineChannelPluginEntry({
|
2026-01-18 08:32:19 +00:00
|
|
|
id: "whatsapp",
|
|
|
|
|
name: "WhatsApp",
|
|
|
|
|
description: "WhatsApp channel plugin",
|
2026-03-16 23:51:41 -07:00
|
|
|
plugin: whatsappPlugin,
|
|
|
|
|
setRuntime: setWhatsAppRuntime,
|
|
|
|
|
});
|