// 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({ pluginId: "qa-channel", errorMessage: "QA channel runtime not initialized", }); export { getQaChannelRuntime, setQaChannelRuntime };