2026-03-20 09:30:16 +01:00

15 lines
469 B
TypeScript

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
import { whatsappPlugin } from "./src/channel.js";
import { setWhatsAppRuntime } from "./src/runtime.js";
export { whatsappPlugin } from "./src/channel.js";
export { setWhatsAppRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
id: "whatsapp",
name: "WhatsApp",
description: "WhatsApp channel plugin",
plugin: whatsappPlugin,
setRuntime: setWhatsAppRuntime,
});