mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 00:11:31 +00:00
12 lines
400 B
TypeScript
12 lines
400 B
TypeScript
import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
|
|
import { nextcloudTalkPlugin } from "./src/channel.js";
|
|
import { setNextcloudTalkRuntime } from "./src/runtime.js";
|
|
|
|
export default defineChannelPluginEntry({
|
|
id: "nextcloud-talk",
|
|
name: "Nextcloud Talk",
|
|
description: "Nextcloud Talk channel plugin",
|
|
plugin: nextcloudTalkPlugin,
|
|
setRuntime: setNextcloudTalkRuntime,
|
|
});
|