diff --git a/src/arg_parser.rs b/src/arg_parser.rs index 3a15f3a..8129c6b 100644 --- a/src/arg_parser.rs +++ b/src/arg_parser.rs @@ -13,6 +13,7 @@ impl ArgParser { let arg = args().nth(1); if arg.is_none() { // <-- interactive mode will go here + println!("...(future) interactive mode not implimented... exiting"); return None; } let arg = arg.unwrap(); @@ -20,13 +21,10 @@ impl ArgParser { "-c" => Some(ParsedArg::Commit), "-p" => Some(ParsedArg::PullRequest), "-h" => { - println!("help stuff here"); - None - } - _ => { println!("Available Commands: -c [commit] -p [pull request] -h [help]"); None } + _ => None, } } }