use convolician::{Config, run};
fn main() {
let config = Config::new().unwrap_or_else(|e| {
eprintln!("Argument error: {}", e);
std::process::exit(1);
});
if let Err(e) = run(config) {
eprintln!("Application error: {}", e);
std::process::exit(1);
}
}