| 16 | #[derive(Parser)] |
| 17 | #[command(name = "cake", author, version, about = "Distributed LLM inference")] |
| 18 | struct Cli { |
| 19 | #[command(subcommand)] |
| 20 | command: Commands, |
| 21 | } |
| 22 | |
| 23 | #[derive(Subcommand)] |
| 24 | enum Commands { |
nothing calls this directly
no outgoing calls
no test coverage detected