use std::{env, process};
use minigrep_by_wjw::Config;
fn main() {
let args: Vec<String> = env::args().collect();
let config = Config::new(&args).unwrap_or_else(|err| {
eprintln!("Problem parsing arguments: {}", err);
process::exit(1);
});
if let Err(e) = minigrep_by_wjw::run(config){
eprintln!("Application error: {}", e);
process::exit(1);
}
}