mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-28 15:33:36 +00:00
11 lines
400 B
TypeScript
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 };
|