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")] pub force: bool, //#[structopt(def)] pub tasks: Vec, }