mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 06:41:08 +00:00
11 lines
271 B
TypeScript
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"] });
|
|
},
|
|
});
|