[feat] add Command::Help to command.parse

This commit is contained in:
Henry Snopek
2020-06-24 23:41:35 -05:00
committed by Henrik Friedrichsen
parent 8188f9e304
commit d2eede2777

View File

@@ -323,6 +323,7 @@ pub fn parse(input: &str) -> Option<Command> {
}),
"volup" => Some(Command::VolumeUp),
"voldown" => Some(Command::VolumeDown),
"help" => Some(Command::Help),
_ => None,
}
}