use clap::{App, SubCommand};
use crate::cmd::arg::{ArgHost, CmdArg};
/// The debug command definition.
pub struct CmdDebug;
impl CmdDebug {
pub fn build<'a, 'b>() -> App<'a, 'b> {
SubCommand::with_name("debug")
.about("View debug information")
.visible_alias("dbg")
.arg(ArgHost::build().hidden(true))
}
}