rest_cli 0.1.0

Send HTTP requests from the command line
Documentation
1
2
3
4
5
6
7
8
use rest_cli::cli::Cli;
use rest_cli::run;
use structopt::StructOpt;

fn main() {
    let args = Cli::from_args();
    run(args);
}