Files
openclaw/extensions/voice-call/cli-metadata.ts
2026-04-04 02:35:36 +01:00

11 lines
271 B
TypeScript

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