mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-21 15:01:03 +00:00
9 lines
370 B
TypeScript
9 lines
370 B
TypeScript
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
import type { PluginRuntime } from "../api.js";
|
|
|
|
const { setRuntime: setSynologyRuntime, getRuntime: getSynologyRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>(
|
|
"Synology Chat runtime not initialized - plugin not registered",
|
|
);
|
|
export { getSynologyRuntime, setSynologyRuntime };
|