mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 08:21:39 +00:00
15 lines
433 B
TypeScript
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,
|
|
});
|