mirror of https://github.com/openclaw/openclaw.git
7 lines
340 B
TypeScript
7 lines
340 B
TypeScript
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
import type { PluginRuntime } from "../runtime-api.js";
|
|
|
|
const { setRuntime: setZalouserRuntime, getRuntime: getZalouserRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>("Zalouser runtime not initialized");
|
|
export { getZalouserRuntime, setZalouserRuntime };
|