zkinterface 1.3.4

An implementation of zkInterface
Documentation
1
2
3
4
5
6
7
8
extern crate zkinterface;

use zkinterface::{Result, cli::{cli, Options}};
use structopt::StructOpt;

fn main() -> Result<()> {
    cli(&Options::from_args())
}