mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-24 16:39:32 +00:00
11 lines
477 B
TypeScript
11 lines
477 B
TypeScript
// Googlechat plugin module implements runtime behavior.
|
|
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
import type { PluginRuntime } from "openclaw/plugin-sdk/runtime-store";
|
|
|
|
const { setRuntime: setGoogleChatRuntime, getRuntime: getGoogleChatRuntime } =
|
|
createPluginRuntimeStore<PluginRuntime>({
|
|
pluginId: "googlechat",
|
|
errorMessage: "Google Chat runtime not initialized",
|
|
});
|
|
export { getGoogleChatRuntime, setGoogleChatRuntime };
|