mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-16 16:50:46 +00:00
9 lines
389 B
TypeScript
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 };
|