mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-08 15:51:06 +00:00
15 lines
464 B
TypeScript
15 lines
464 B
TypeScript
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/channel-core";
|
|
import { feishuPlugin } from "./src/channel.js";
|
|
import { setFeishuRuntime } from "./src/runtime.js";
|
|
|
|
export { feishuPlugin } from "./src/channel.js";
|
|
export { setFeishuRuntime } from "./src/runtime.js";
|
|
|
|
export default defineChannelPluginEntry({
|
|
id: "feishu",
|
|
name: "Feishu",
|
|
description: "Feishu/Lark channel plugin",
|
|
plugin: feishuPlugin,
|
|
setRuntime: setFeishuRuntime,
|
|
});
|