| 6 | #[command(about = "RustUI Native Development Tools")] |
| 7 | #[command(version)] |
| 8 | struct Cli { |
| 9 | #[command(subcommand)] |
| 10 | command: Commands, // Make Commands required by removing Option |
| 11 | } |
| 12 | |
| 13 | #[derive(Subcommand)] |
| 14 | enum Commands { |
nothing calls this directly
no outgoing calls
no test coverage detected