iotdb-cli 0.1.0

Apache IotDB CLI Client written in Rust
use crate::common;
use crate::opt::SubCmd;
use crate::VERSION;

impl SubCmd {
    /// Print help info
    pub fn help(&self) {
        common::print_help();
    }

    #[allow(dead_code)]
    pub fn update(&self) {
        println!("Update to {:?}", VERSION)
    }

    #[allow(dead_code)]
    pub fn download_latest(&self) {
        todo!()
    }

    #[allow(dead_code)]
    pub fn replace_binary(&self) {
        todo!()
    }
}