mirror of https://github.com/openclaw/openclaw.git
7 lines
330 B
TypeScript
7 lines
330 B
TypeScript
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
import type { PluginRuntime } from "../runtime-api.js";
|
|
|
|
const { setRuntime: setTwitchRuntime, getRuntime: getTwitchRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>("Twitch runtime not initialized");
|
|
export { getTwitchRuntime, setTwitchRuntime };
|