You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Igloo/src/main.rs

26 lines
452 B
Rust

extern crate clap;
extern crate config;
mod igloo;
use clap::{crate_version, crate_description, crate_authors, App, Arg, AppSettings, ArgMatches};
use config::*;
use std::collections::HashMap;
use std::path::Path;
fn main()
{
let ig = igloo::Igloo::New();
match ig.start()
{
Ok(it) => {
match ig.run(it)
{
Ok(s) => println!("{}", s),
Err(e) => println!("Run Error: {:?}", e),
}
}
Err(e) => println!("Error: {:?}", e),
}
}