Files
openclaw/extensions/signal/src/runtime.ts
2026-05-01 16:41:09 +01:00

10 lines
392 B
TypeScript

import type { PluginRuntime } from "openclaw/plugin-sdk/core";
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
const { setRuntime: setSignalRuntime, clearRuntime: clearSignalRuntime } =
createPluginRuntimeStore<PluginRuntime>({
pluginId: "signal",
errorMessage: "Signal runtime not initialized",
});
export { clearSignalRuntime, setSignalRuntime };