Files
clawdbot/extensions/zalo/src/runtime.ts
2026-01-18 03:37:26 +00:00

15 lines
328 B
TypeScript

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