imag/src/main.rs

20 lines
292 B
Rust
Raw Normal View History

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