tr1pd 0.3.1

tamper resistant audit log
Documentation
use clap::Arg;

#[inline]
pub fn socket() -> Arg<'static, 'static> {
    Arg::with_name("socket")
        .short("S")
        .long("socket")
        .takes_value(true)
        .env("TR1PD_SOCKET")
}

#[inline]
pub fn data_dir() -> Arg<'static, 'static> {
    Arg::with_name("data-dir")
        .short("D")
        .long("data-dir")
        .takes_value(true)
        .env("TR1PD_DATADIR")
}