//! `xml` subcommand: thin wrapper around the in-tree XML disassembler CLI.
//!
//! All arguments after `config-disassembler xml` are forwarded directly to
//! [`crate::xml::cli::run`], so every option from the original
//! `xml-disassembler` crate works unchanged here. This subcommand
//! intentionally does not duplicate any of the XML logic — it simply
//! delegates to the in-tree port.
use crate;
/// Run the in-tree XML disassembler CLI with the provided arguments.
///
/// `args` should be the trailing arguments after `config-disassembler xml`,
/// e.g. `["disassemble", "path/to/file.xml", "--format", "json"]`.
pub async