tr1pd 0.3.1

tamper resistant audit log
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use clap::{App, SubCommand, Arg, AppSettings};

use cli::common;

#[inline]
pub fn build_cli() -> App<'static, 'static> {
    App::new("tr1pd")
        .setting(AppSettings::ColoredHelp)
        .subcommand(SubCommand::with_name("bash-completion")
            .about("Generate bash completion script for the tr1pd command.")
        )
        .arg(common::socket())
        .arg(common::data_dir())
        .arg(Arg::with_name("unprivileged")
            .help("Reserved for internal usage")
            .long("unprivileged")
        )
}