2026-03-16 23:51:41 -07:00
|
|
|
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
2026-03-16 00:09:28 -07:00
|
|
|
import { zaloPlugin } from "./src/channel.js";
|
2026-01-18 03:34:02 +00:00
|
|
|
import { setZaloRuntime } from "./src/runtime.js";
|
2026-01-15 05:03:50 +00:00
|
|
|
|
2026-03-17 09:33:17 -07:00
|
|
|
export { zaloPlugin } from "./src/channel.js";
|
|
|
|
|
export { setZaloRuntime } from "./src/runtime.js";
|
|
|
|
|
|
2026-03-16 23:51:41 -07:00
|
|
|
export default defineChannelPluginEntry({
|
2026-01-15 05:03:50 +00:00
|
|
|
id: "zalo",
|
|
|
|
|
name: "Zalo",
|
2026-03-16 23:51:41 -07:00
|
|
|
description: "Zalo channel plugin",
|
|
|
|
|
plugin: zaloPlugin,
|
|
|
|
|
setRuntime: setZaloRuntime,
|
|
|
|
|
});
|