Files
Moltbot/extensions/tlon/src/runtime.ts
2026-03-04 02:35:13 -05:00

15 lines
327 B
TypeScript

import type { PluginRuntime } from "openclaw/plugin-sdk/tlon";
let runtime: PluginRuntime | null = null;
export function setTlonRuntime(next: PluginRuntime) {
runtime = next;
}
export function getTlonRuntime(): PluginRuntime {
if (!runtime) {
throw new Error("Tlon runtime not initialized");
}
return runtime;
}