ipld-schema 0.3.2

IPLD Schema tools
Documentation
1
2
3
4
5
6
7
8
9
#![cfg(feature = "build-binary")]

use ipld_schema::{run, Opt};
use structopt::StructOpt;

fn main() -> Result<(), ()> {
    run(&Opt::from_args(), &mut std::io::stdout())?;
    Ok(())
}