Files
openclaw/extensions/buzz/src/runtime.ts
2026-07-26 14:09:23 +01:00

11 lines
368 B
TypeScript

import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
import type { PluginRuntime } from "../runtime-api.js";
const { setRuntime: setBuzzRuntime, getRuntime: getBuzzRuntime } =
createPluginRuntimeStore<PluginRuntime>({
pluginId: "buzz",
errorMessage: "Buzz runtime not initialized",
});
export { getBuzzRuntime, setBuzzRuntime };