import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store"; import type { PluginRuntime } from "./runtime-api.js"; const { setRuntime: setMatrixRuntime, getRuntime: getMatrixRuntime, tryGetRuntime: getOptionalMatrixRuntime, } = createPluginRuntimeStore({ pluginId: "matrix", errorMessage: "Matrix runtime not initialized", }); export { getMatrixRuntime, getOptionalMatrixRuntime, setMatrixRuntime };