#![warn(missing_docs)]//! The entry point for xvc cli
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::from_args_os(std::env::args_os())?;xvc::cli::dispatch(cli_opts)}