Files
openclaw/extensions/voice-call/cli-metadata.ts
2026-06-04 01:45:11 -04:00

13 lines
350 B
TypeScript

import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
// Lightweight CLI metadata entry for exposing the voicecall command.
export default definePluginEntry({
id: "voice-call",
name: "Voice Call",
description: "Voice call channel plugin",
register(api) {
api.registerCli(() => {}, { commands: ["voicecall"] });
},
});