mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-26 01:09:31 +00:00
11 lines
500 B
TypeScript
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 };
|