diff --git a/imag-todo/src/main.rs b/imag-todo/src/main.rs index 4bad0a26..9771442e 100644 --- a/imag-todo/src/main.rs +++ b/imag-todo/src/main.rs @@ -38,7 +38,7 @@ fn main() { match rt.cli().subcommand_name() { Some("tw-hook") => tw_hook(&rt), Some("list") => list(&rt), - _ => unimplemented!(), + _ => unreachable!(), } // end match scmd } // end main