Files
openclaw/extensions/zalo/index.ts
2026-03-17 09:38:21 -07:00

15 lines
433 B
TypeScript

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
import { zaloPlugin } from "./src/channel.js";
import { setZaloRuntime } from "./src/runtime.js";
export { zaloPlugin } from "./src/channel.js";
export { setZaloRuntime } from "./src/runtime.js";
export default defineChannelPluginEntry({
id: "zalo",
name: "Zalo",
description: "Zalo channel plugin",
plugin: zaloPlugin,
setRuntime: setZaloRuntime,
});