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

30 lines
508 B
Rust

#![allow(warnings)]
extern crate clap;
4 years ago
extern crate config;
4 years ago
use config::Config;
use clap::{Arg, App, AppSettings, ArgMatches};
use igloo_core::{Igloo, IglooErrType, IglooInstType};
use igloo_cli;
use igloo_make;
use igloo_manifest;
use igloo_agent;
4 years ago
fn main()
{
4 years ago
let mut ig = Igloo::new();
let _start_ret = match ig.start()
4 years ago
{
Ok(it) =>
{
match ig.run(it)
{
Ok(rt) => println!("{:?}", rt),
Err(e) => println!("Run Error: {:?}", e),
}
}
Err(e) => println!("Error: {:?}", e),
};
4 years ago
}