mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 12:19:32 +00:00
14 lines
412 B
TypeScript
14 lines
412 B
TypeScript
// Voice Call plugin module implements cli metadata behavior.
|
|
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"] });
|
|
},
|
|
});
|