mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 19:19:31 +00:00
18 lines
497 B
TypeScript
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",
|
|
},
|
|
});
|