1use clap::{Arg, ArgAction}; 2 3pub fn flag(name: &'static str, help: &'static str) -> Arg { 4 Arg::new(name).long(name).help(help).action(ArgAction::SetTrue) 5}