mirror of https://github.com/openclaw/openclaw.git
10 lines
396 B
TypeScript
10 lines
396 B
TypeScript
import type { PluginRuntime } from "openclaw/plugin-sdk/core";
|
|
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
|
|
const {
|
|
setRuntime: setSignalRuntime,
|
|
clearRuntime: clearSignalRuntime,
|
|
getRuntime: getSignalRuntime,
|
|
} = createPluginRuntimeStore<PluginRuntime>("Signal runtime not initialized");
|
|
export { clearSignalRuntime, getSignalRuntime, setSignalRuntime };
|