| 9 | #[derive(Parser)] |
| 10 | #[clap(version = "1.0", author = "Me")] |
| 11 | struct Opts { |
| 12 | #[clap(short, long)] |
| 13 | functions_file: Option<String>, |
| 14 | #[clap(short, long)] |
| 15 | stack: Option<String>, |
| 16 | } |
| 17 | |
| 18 | fn main() { |
| 19 | let opts: Opts = Opts::parse(); |
nothing calls this directly
no outgoing calls
no test coverage detected