glider 0.1.0

The glider project. WIP.
Documentation
extern crate clap;
use clap::{Arg, App};

fn main() {
    let matches = App::new("glider")
        .version("0.1.0")
        .author("Avinash Dwarapu <avinash@dwarapu.me>")
        .about("Does awesome things")
        .arg(Arg::with_name("config")
                 .short("c")
                 .long("config")
                 .value_name("FILE")
                 .help("Sets a custom config file")
                 .takes_value(true))
        .arg(Arg::with_name("INPUT")
                 .help("Sets the input file to use")
                 .required(true)
                 .index(1))
        .arg(Arg::with_name("v")
                 .short("v")
                 .multiple(true)
                 .help("Sets the level of verbosity"))
        .get_matches();

    let config = matches.value_of("config").unwrap_or("default.conf");
    println!("Value for config: {}", config);
}