Files
openclaw/extensions/sms/src/runtime.ts
2026-06-04 21:02:07 -04:00

11 lines
400 B
TypeScript

// Sms plugin module implements runtime behavior.
import { createPluginRuntimeStore, type PluginRuntime } from "openclaw/plugin-sdk/runtime-store";
const { setRuntime: setSmsRuntime, getRuntime: getSmsRuntime } =
createPluginRuntimeStore<PluginRuntime>({
pluginId: "sms",
errorMessage: "SMS runtime not initialized - plugin not registered",
});
export { getSmsRuntime, setSmsRuntime };