mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-28 05:16:23 -06:00
12 lines
456 B
TypeScript
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 };
|