mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-20 03:34:50 +00:00
11 lines
420 B
TypeScript
11 lines
420 B
TypeScript
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
import type { PluginRuntime } from "openclaw/plugin-sdk/runtime-store";
|
|
|
|
const { setRuntime: setClickClackRuntime, getRuntime: getClickClackRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>({
|
|
pluginId: "clickclack",
|
|
errorMessage: "ClickClack runtime not initialized",
|
|
});
|
|
|
|
export { getClickClackRuntime, setClickClackRuntime };
|