| 4 | #[derive(Parser, Debug)] |
| 5 | #[command(author, version, about, long_about = None)] |
| 6 | pub struct Cli { |
| 7 | /// The main question/topic to research |
| 8 | pub question: Option<String>, |
| 9 | |
| 10 | /// Maximum number of iterations |
| 11 | #[arg(short = 'i', long, default_value_t = 3)] |
| 12 | pub max_iterations: u8, |
| 13 | |
| 14 | /// Enable verbose output |
| 15 | #[arg(short, long, default_value_t = false)] |
| 16 | pub verbose: bool, |
| 17 | } |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected