mirror of https://github.com/openclaw/openclaw.git
9 lines
387 B
TypeScript
9 lines
387 B
TypeScript
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/compat";
|
|
import type { PluginRuntime } from "openclaw/plugin-sdk/synology-chat";
|
|
|
|
const { setRuntime: setSynologyRuntime, getRuntime: getSynologyRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>(
|
|
"Synology Chat runtime not initialized - plugin not registered",
|
|
);
|
|
export { getSynologyRuntime, setSynologyRuntime };
|