jetkcli 0.1.2-alpha1

A strongly opininated jira/git command line interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Serialize, Deserialize, Debug)]
pub struct AssigneeRequest {
    name: String,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct Assignee {
    pub name: String,
}

impl AssigneeRequest {
    pub fn new(username: &str) -> AssigneeRequest {
        AssigneeRequest {
            name: username.into(),
        }
    }
}