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

11 lines
421 B
TypeScript

// Zalo plugin module implements runtime behavior.
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
import type { PluginRuntime } from "./runtime-support.js";
const { setRuntime: setZaloRuntime, getRuntime: getZaloRuntime } =
createPluginRuntimeStore<PluginRuntime>({
pluginId: "zalo",
errorMessage: "Zalo runtime not initialized",
});
export { getZaloRuntime, setZaloRuntime };