fey 0.0.1

fey is a fast and reliable username scanner
Documentation
use clap::Parser;

#[derive(Parser)]
#[command(author = "krixcrox<falkwitte@github>", version, about)]
pub struct Args {
    pub username: String,

    /// write output to the given file
    #[arg(long, short = 'f')]
    pub file: Option<String>,

    /// only return found urls
    #[arg(long, short = 'g')]
    pub found: bool,

    /// only return not found urls
    #[arg(long, short = 'b')]
    pub not_found: bool,

    /// outputs more information for each request
    #[arg(long, short = 'd')]
    pub debugging: bool,
}