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