//! The `version` subcommand
useabscissa::{Callable, Command as CommandTrait};usesuper::KmsCommand;/// The `version` subcommand
#[derive(Debug, Default, Options)]pubstructVersionCommand{}implCallable forVersionCommand{/// Print version message
fncall(&self){KmsCommand::print_package_info();}}