jetkcli 0.1.1-alpha1

A strongly opininated jira/git command line interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{command::JetJiraCommand, error::JetError, jira::Jira};

pub struct PushCommand;

impl JetJiraCommand for PushCommand {
    fn execute(
        &self,
        _: &mut Jira,
    ) -> Result<(), JetError> {
        unimplemented!()
    }
}