jetkcli 0.1.0-alpha1

A strongly opininated jira/git command line interface
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io::Result;

pub trait GitHost {
    fn submit_pr() -> Result<()>;
    fn edit_pr() -> Result<()>;
    fn assign_pr(
        user_id: &str,
        pr_id: &str,
    ) -> Result<()>;
}