Files
openclaw/extensions/clickclack/src/runtime.ts
2026-05-09 15:29:27 +01:00

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 };