xvc-workflow-tests 0.4.0

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 clap::Parser;
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::parse();
    xvc::cli::dispatch(cli_opts)
}