odcs 0.9.1

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

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

fn main() {
    let code = run(Cli::parse());
    if code != 0 {
        std::process::exit(code);
    }
}