cod_cli/milestone/
create.rs

1use clap::Parser;
2
3/// Create an issue
4#[derive(Parser, Debug)]
5pub struct CreateMilestoneArgs {
6    /// Title or summary
7    #[arg(short, long)]
8    pub title: Option<String>,
9
10    /// Main description of milestone
11    #[arg(id = "description", short, long)]
12    pub body: Option<String>,
13}