use structopt::StructOpt; #[derive(Debug, StructOpt)] #[structopt(name = "git-build", about = "Update your repositories and trigger tasks")] pub struct Cli { #[structopt(short = "f", long = "force")] force: bool, //#[structopt(def)] tasks: Vec, }