1
protomask/src/cli.rs
2023-07-14 12:21:40 -04:00

16 lines
286 B
Rust

use std::path::PathBuf;
use clap::Parser;
#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct Args {
/// Path to the config file
pub config_file: PathBuf,
/// Enable verbose logging
#[clap(short, long)]
pub verbose: bool,
}