mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 08:21:39 +00:00
12 lines
334 B
TypeScript
12 lines
334 B
TypeScript
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
|
import { zaloPlugin } from "./src/channel.js";
|
|
import { setZaloRuntime } from "./src/runtime.js";
|
|
|
|
export default defineChannelPluginEntry({
|
|
id: "zalo",
|
|
name: "Zalo",
|
|
description: "Zalo channel plugin",
|
|
plugin: zaloPlugin,
|
|
setRuntime: setZaloRuntime,
|
|
});
|