dtcs 0.3.0

Reference implementation of the Data Transformation Contract Standard (DTCS)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! DTCS command-line binary.

use clap::Parser;
use dtcs::cli::{run, Cli};

fn main() -> miette::Result<()> {
    let code = run(Cli::parse())?;
    if code != 0 {
        std::process::exit(code);
    }
    Ok(())
}