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.
Igloo/src/main.rs

20 lines
302 B
Rust

extern crate clap;
4 years ago
extern crate config;
mod igloo;
use clap::{crate_version, crate_description, crate_authors, App, Arg};
use config::*;
use std::collections::HashMap;
4 years ago
fn main()
{
4 years ago
let ig = igloo::Igloo::New();
match ig.start()
{
Ok(d) => println!("{:?}", d),
Err(_) => panic!("FUCK"),
}
4 years ago
}