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
//! The `version` subcommand

use abscissa::{Callable, Command as CommandTrait};

use super::KmsCommand;

/// The `version` subcommand
#[derive(Debug, Default, Options)]
pub struct VersionCommand {}

impl Callable for VersionCommand {
    /// Print version message
    fn call(&self) {
        KmsCommand::print_package_info();
    }
}