Files
openclaw/extensions/synology-chat/src/runtime.ts
2026-04-17 16:05:09 +01:00

9 lines
389 B
TypeScript

import { createPluginRuntimeStore, type PluginRuntime } from "openclaw/plugin-sdk/runtime-store";
const { setRuntime: setSynologyRuntime, getRuntime: getSynologyRuntime } =
createPluginRuntimeStore<PluginRuntime>({
pluginId: "synology-chat",
errorMessage: "Synology Chat runtime not initialized - plugin not registered",
});
export { getSynologyRuntime, setSynologyRuntime };