fn run(command: Command) -> Result<(), Error> {
match command {
Command::Version { json } => {
let mut stdout = io::stdout();
if json {
VERSION.write_json(&mut stdout)?;
println!();
} else {