use abscissa::{Callable, Command};
use super::KmsCommand;
#[derive(Debug, Default, Options)]
pub struct HelpCommand {
#[options(free)]
pub args: Vec<String>,
}
impl Callable for HelpCommand {
fn call(&self) {
KmsCommand::print_usage(self.args.as_slice());
}
}