15 lines
350 B
TypeScript
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;
|
|
}
|