Files
openclaw/extensions/qa-channel/src/runtime.ts
2026-06-04 21:02:07 -04:00

12 lines
456 B
TypeScript

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