sndr 0.3.0

Easily and securely share files from the command line. A fully featured Send client (formerly ffsend, rebranded by tarnover).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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))
    }
}