16 lines
436 B
TypeScript
16 lines
436 B
TypeScript
import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
|
|
import { emptyPluginConfigSchema } from "openclaw/plugin-sdk";
|
|
import { feishuPlugin } from "./src/channel.js";
|
|
|
|
const plugin = {
|
|
id: "feishu",
|
|
name: "Feishu",
|
|
description: "Feishu (Lark) channel plugin",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: OpenClawPluginApi) {
|
|
api.registerChannel({ plugin: feishuPlugin });
|
|
},
|
|
};
|
|
|
|
export default plugin;
|