1use clap::Args; 2 3/// Show repos 4#[derive(Debug, Args)] 5pub struct Show { 6 /// Config file path 7 #[arg(long)] 8 pub config: Option<String>, 9}