#![warn(missing_docs)]//! The entry point for xvc cli
useclap::Parser;usexvc::error::Result;/// The entry point of the `xvc` cli.
////// It parses the command line arguments [xvc::cli::XvcCLI] and calls [xvc::cli::dispatch]
///fnmain()->Result<()>{let cli_opts =xvc::cli::XvcCLI::parse();xvc::cli::dispatch(cli_opts)}