imag/src/main.rs
2015-10-18 20:22:23 +02:00

11 lines
175 B
Rust

#[macro_use] extern crate clap;
use cli::Config;
mod cli;
fn main() {
let mut config = Config::new();
cli::configure(&mut config);
println!("Hello, world!");
}