imag/src/main.rs

12 lines
175 B
Rust
Raw Normal View History

2015-10-18 13:58:17 +00:00
#[macro_use] extern crate clap;
use cli::Config;
mod cli;
fn main() {
let mut config = Config::new();
cli::configure(&mut config);
println!("Hello, world!");
}