| 7 | #[derive(Debug, Parser)] |
| 8 | #[command(version, about, long_about = "Todo Cli")] |
| 9 | struct Program { |
| 10 | #[command(subcommand)] |
| 11 | pub command: TodoCommand, |
| 12 | } |
| 13 | |
| 14 | fn main() { |
| 15 | let args = Program::parse(); |
nothing calls this directly
no outgoing calls
no test coverage detected