19 lines
570 B
TypeScript
19 lines
570 B
TypeScript
import type { ClawdbotPluginApi } from "clawdbot/plugin-sdk";
|
|
import { emptyPluginConfigSchema } from "clawdbot/plugin-sdk";
|
|
|
|
import { nextcloudTalkPlugin } from "./src/channel.js";
|
|
import { setNextcloudTalkRuntime } from "./src/runtime.js";
|
|
|
|
const plugin = {
|
|
id: "nextcloud-talk",
|
|
name: "Nextcloud Talk",
|
|
description: "Nextcloud Talk channel plugin",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: ClawdbotPluginApi) {
|
|
setNextcloudTalkRuntime(api.runtime);
|
|
api.registerChannel({ plugin: nextcloudTalkPlugin });
|
|
},
|
|
};
|
|
|
|
export default plugin;
|