tmkms 0.2.3

Tendermint Key Management System
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use abscissa::{Callable, Command};

use super::KeysCommand;

/// The `yubihsm keys help` subcommand
#[derive(Debug, Default, Options)]
pub struct HelpCommand {
    #[options(free)]
    pub args: Vec<String>,
}

impl Callable for HelpCommand {
    /// Print help for the `yubihsm` subcommand
    fn call(&self) {
        KeysCommand::print_usage(self.args.as_slice());
    }
}