Files
clawdbot/extensions/nextcloud-talk/src/runtime.ts
2026-01-20 11:22:27 +00:00

15 lines
350 B
TypeScript

import type { PluginRuntime } from "clawdbot/plugin-sdk";
let runtime: PluginRuntime | null = null;
export function setNextcloudTalkRuntime(next: PluginRuntime) {
runtime = next;
}
export function getNextcloudTalkRuntime(): PluginRuntime {
if (!runtime) {
throw new Error("Nextcloud Talk runtime not initialized");
}
return runtime;
}