UNPKG

cloudonix-js

Version:

A JavaScript library for building and serving Cloudonix Voice Application XML (CXML) documents with support for AI voice agents, media streaming, and advanced telephony features

20 lines (18 loc) 424 B
/** * @file Hangup verb implementation * @copyright 2025 Nir Simionovich, nirs@cloudonix.io * @license MIT * @module cloudonix-js/verbs/hangup * @description Implements the Hangup verb for ending a call */ 'use strict'; module.exports = { /** * Create a Hangup element * @returns {Object} - The Hangup element */ create: () => { // Hangup doesn't have any attributes or content return {}; } };