use clap::{ColorChoice, Parser};
#[derive(Parser, Debug)]
#[clap(about, version, name = "spcsv", color(ColorChoice::Never))]
pub struct Args {
#[clap(required = true)]
pub(crate) file: String,
#[clap(required = true)]
pub(crate) number_of_files: usize,
#[clap(short, long)]
pub(crate) not_signed_file: bool,
#[clap(short, long)]
pub(crate) remaining_in_last: bool,
#[clap(short, long)]
pub(crate) verbose: bool,
}
impl Args {
pub fn load() -> Args {
Args::parse()
}
}