use clap::Parser;
const ABOUT: &str = "List repositories";
const LONG_ABOUT: &str = r#"
By default, this command shows you all repositories that you have forked or initialized.
If you wish to see all seeded repositories, use the `--seeded` option.
"#;
#[derive(Debug, Parser)]
#[command(about = ABOUT, long_about = LONG_ABOUT, disable_version_flag = true)]
pub struct Args {
#[arg(long, conflicts_with = "public")]
pub(super) private: bool,
#[arg(long)]
pub(super) public: bool,
#[arg(short, long)]
pub(super) seeded: bool,
#[arg(short, long)]
pub(super) all: bool,
#[arg(short, long)]
pub(super) verbose: bool,
}