| 14 | #[derive(Parser)] |
| 15 | #[command(name = "coderlm", about = "CoderLM REPL server for code-aware agent sessions")] |
| 16 | struct Cli { |
| 17 | /// Subcommand |
| 18 | #[command(subcommand)] |
| 19 | command: Commands, |
| 20 | } |
| 21 | |
| 22 | #[derive(clap::Subcommand)] |
| 23 | enum Commands { |
nothing calls this directly
no outgoing calls
no test coverage detected