mirror of https://github.com/openclaw/openclaw.git
15 lines
517 B
TypeScript
15 lines
517 B
TypeScript
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
|
import { nextcloudTalkPlugin } from "./src/channel.js";
|
|
import { setNextcloudTalkRuntime } from "./src/runtime.js";
|
|
|
|
export { nextcloudTalkPlugin } from "./src/channel.js";
|
|
export { setNextcloudTalkRuntime } from "./src/runtime.js";
|
|
|
|
export default defineChannelPluginEntry({
|
|
id: "nextcloud-talk",
|
|
name: "Nextcloud Talk",
|
|
description: "Nextcloud Talk channel plugin",
|
|
plugin: nextcloudTalkPlugin,
|
|
setRuntime: setNextcloudTalkRuntime,
|
|
});
|