15 lines
433 B
TypeScript
Raw Permalink Normal View History

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
import { zaloPlugin } from "./src/channel.js";
2026-01-18 03:34:02 +00:00
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,
});