Files
openclaw/extensions/whatsapp/index.ts
2026-03-16 23:52:23 -07:00

12 lines
362 B
TypeScript

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