15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import type { PluginRuntime } from "clawdbot/plugin-sdk";
|
|
|
|
let runtime: PluginRuntime | null = null;
|
|
|
|
export function setZalouserRuntime(next: PluginRuntime): void {
|
|
runtime = next;
|
|
}
|
|
|
|
export function getZalouserRuntime(): PluginRuntime {
|
|
if (!runtime) {
|
|
throw new Error("Zalouser runtime not initialized");
|
|
}
|
|
return runtime;
|
|
}
|