mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-08 15:53:56 +00:00
11 lines
421 B
TypeScript
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 };
|