Files
openclaw/extensions/nextcloud-talk/src/runtime.ts
2026-06-04 21:33:54 -04:00

11 lines
500 B
TypeScript

// Nextcloud Talk plugin module implements runtime behavior.
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
import type { PluginRuntime } from "openclaw/plugin-sdk/runtime-store";
const { setRuntime: setNextcloudTalkRuntime, getRuntime: getNextcloudTalkRuntime } =
createPluginRuntimeStore<PluginRuntime>({
pluginId: "nextcloud-talk",
errorMessage: "Nextcloud Talk runtime not initialized",
});
export { getNextcloudTalkRuntime, setNextcloudTalkRuntime };