jira-terminal 2.5.0

This is a command line application that can be used as a personal productivity tool for interacting with JIRA
1
2
3
4
5
6
7
8
9
10
11
12
use clap::{App, Arg, SubCommand};

pub fn subcommand() -> App<'static, 'static> {
    SubCommand::with_name("fields")
        .about("List of possible Fields for details...")
        .arg(
            Arg::with_name("TICKET")
                .help("Ticket id for details.")
                .required(true)
                .index(1),
        )
}