import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store"; import type { PluginRuntime } from "openclaw/plugin-sdk/runtime-store"; const { setRuntime: setMSTeamsRuntime, getRuntime: getMSTeamsRuntime, tryGetRuntime: getOptionalMSTeamsRuntime, } = createPluginRuntimeStore({ pluginId: "msteams", errorMessage: "MSTeams runtime not initialized", }); export { getMSTeamsRuntime, getOptionalMSTeamsRuntime, setMSTeamsRuntime };