mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 18:51:04 +00:00
7 lines
330 B
TypeScript
7 lines
330 B
TypeScript
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/compat";
|
|
import type { PluginRuntime } from "openclaw/plugin-sdk/core";
|
|
|
|
const { setRuntime: setSignalRuntime, getRuntime: getSignalRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>("Signal runtime not initialized");
|
|
export { getSignalRuntime, setSignalRuntime };
|