Files
openclaw/extensions/tlon/src/runtime.ts
2026-06-04 21:33:54 -04:00

11 lines
435 B
TypeScript

// Tlon plugin module implements runtime behavior.
import type { PluginRuntime } from "openclaw/plugin-sdk/plugin-runtime";
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
const { setRuntime: setTlonRuntime, getRuntime: getTlonRuntime } =
createPluginRuntimeStore<PluginRuntime>({
pluginId: "tlon",
errorMessage: "Tlon runtime not initialized",
});
export { getTlonRuntime, setTlonRuntime };