gacm/
lib.rs

1pub mod command {
2    use structopt::StructOpt;
3
4    #[derive(StructOpt, Debug)]
5    #[structopt(name = "gacm")]
6    pub struct Cli {
7        pub pattern: String,
8        #[structopt(parse(from_os_str))]
9        pub command: std::path::PathBuf,
10    }
11}