mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-13 05:00:44 +00:00
9 lines
338 B
TypeScript
9 lines
338 B
TypeScript
import type { PluginRuntime } from "openclaw/plugin-sdk/core";
|
|
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
|
|
const { setRuntime: setIMessageRuntime } = createPluginRuntimeStore<PluginRuntime>({
|
|
pluginId: "imessage",
|
|
errorMessage: "iMessage runtime not initialized",
|
|
});
|
|
export { setIMessageRuntime };
|