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