1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Parser;

/// Create an issue
#[derive(Parser, Debug)]
pub struct CreateMilestoneArgs {
    /// Title or summary
    #[arg(short, long)]
    pub title: Option<String>,

    /// Main description of milestone
    #[arg(id = "description", short, long)]
    pub body: Option<String>,
}