diff --git a/imag-todo/src/main.rs b/imag-todo/src/main.rs index 859e7579..446b3e7c 100644 --- a/imag-todo/src/main.rs +++ b/imag-todo/src/main.rs @@ -39,6 +39,9 @@ fn main() { match rt.cli().subcommand_name() { Some("tw-hook") => tw_hook(&rt), Some("list") => list(&rt), + None => { + warn!("No command"); + }, _ => unreachable!(), } // end match scmd } // end main