feat: cmd_test

This commit is contained in:
2020-11-21 20:39:44 +08:00
parent 41ddf78a9d
commit dcba7672b8

View File

@@ -9,8 +9,7 @@ use cmd::{Command, CommandError};
fn main() -> CommandError { fn main() -> CommandError {
let commands: Vec<Box<dyn Command>> = vec![ let commands: Vec<Box<dyn Command>> = vec![
// Box::new(cmd_elf::CommandElf), Box::new(cmd_test::CommandImpl)
// Box::new(cmd_show::CommandShow),
]; ];
let mut app = App::new(env!("CARGO_PKG_NAME")) let mut app = App::new(env!("CARGO_PKG_NAME"))
.version(env!("CARGO_PKG_VERSION")) .version(env!("CARGO_PKG_VERSION"))