Files
openclaw/extensions/feishu/src/runtime.ts
2026-06-04 21:59:00 -04:00

11 lines
439 B
TypeScript

// Feishu plugin module implements runtime behavior.
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 };