use crate::common;
use crate::opt::SubCmd;
use crate::VERSION;
impl SubCmd {
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!()
}
}