mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-03 15:51:40 +00:00
11 lines
439 B
TypeScript
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 };
|