xvc-workflow-tests 0.6.6

Integration test suite for Xvc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(missing_docs)]
//! The entry point for xvc cli

use xvc::error::Result;

/// The entry point of the `xvc` cli.
///
/// It parses the command line arguments [xvc::cli::XvcCLI] and calls [xvc::cli::dispatch]
///
fn main() -> Result<()> {
    let cli_opts = xvc::cli::XvcCLI::from_args_os(std::env::args_os())?;
    xvc::cli::dispatch(cli_opts)
}