mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 03:40:43 +00:00
Merged via squash.
Prepared head SHA: e8d6738fd0
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Reviewed-by: @gumadeiras
10 lines
386 B
TypeScript
10 lines
386 B
TypeScript
import type { PluginRuntime } from "openclaw/plugin-sdk/core";
|
|
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
|
|
const { setRuntime: setFeishuRuntime, getRuntime: getFeishuRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>({
|
|
pluginId: "feishu",
|
|
errorMessage: "Feishu runtime not initialized",
|
|
});
|
|
export { getFeishuRuntime, setFeishuRuntime };
|