mirror of https://github.com/openclaw/openclaw.git
9 lines
316 B
TypeScript
9 lines
316 B
TypeScript
import {
|
|
createPluginRuntimeStore,
|
|
type PluginRuntime,
|
|
} from "../../../src/plugin-sdk-internal/core.js";
|
|
|
|
const { setRuntime: setIMessageRuntime, getRuntime: getIMessageRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>("iMessage runtime not initialized");
|
|
export { getIMessageRuntime, setIMessageRuntime };
|