mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-03 13:22:14 +00:00
10 lines
391 B
TypeScript
10 lines
391 B
TypeScript
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
import type { PluginRuntime } from "../api.js";
|
|
|
|
const {
|
|
setRuntime: setLineRuntime,
|
|
clearRuntime: clearLineRuntime,
|
|
getRuntime: getLineRuntime,
|
|
} = createPluginRuntimeStore<PluginRuntime>("LINE runtime not initialized - plugin not registered");
|
|
export { clearLineRuntime, getLineRuntime, setLineRuntime };
|