Files
openclaw/extensions/qa-channel/src/runtime.ts
2026-04-05 23:21:56 +01:00

8 lines
346 B
TypeScript

import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
import type { PluginRuntime } from "./runtime-api.js";
const { setRuntime: setQaChannelRuntime, getRuntime: getQaChannelRuntime } =
createPluginRuntimeStore<PluginRuntime>("QA channel runtime not initialized");
export { getQaChannelRuntime, setQaChannelRuntime };