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

18 lines
497 B
TypeScript

// Sms plugin entrypoint registers its OpenClaw integration.
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelEntry({
id: "sms",
name: "SMS",
description: "Twilio SMS channel plugin for OpenClaw text messages.",
importMetaUrl: import.meta.url,
plugin: {
specifier: "./channel-plugin-api.js",
exportName: "smsPlugin",
},
runtime: {
specifier: "./api.js",
exportName: "setSmsRuntime",
},
});