mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-17 23:03:21 +02:00
8 lines
346 B
TypeScript
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 };
|