mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-11 06:26:09 +00:00
11 lines
435 B
TypeScript
11 lines
435 B
TypeScript
// Tlon plugin module implements runtime behavior.
|
|
import type { PluginRuntime } from "openclaw/plugin-sdk/plugin-runtime";
|
|
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
|
|
const { setRuntime: setTlonRuntime, getRuntime: getTlonRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>({
|
|
pluginId: "tlon",
|
|
errorMessage: "Tlon runtime not initialized",
|
|
});
|
|
export { getTlonRuntime, setTlonRuntime };
|