use clap::Parser;
#[derive(Parser)]
#[command(author = "krixcrox<falkwitte@github>", version, about)]
pub struct Args {
pub username: String,
#[arg(long, short = 'f')]
pub file: Option<String>,
#[arg(long, short = 'g')]
pub found: bool,
#[arg(long, short = 'b')]
pub not_found: bool,
#[arg(long, short = 'd')]
pub debugging: bool,
}