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
18
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate failure;
#[macro_use]
extern crate lazy_static;

extern crate moins;
extern crate serde;
extern crate toml;

mod error;
mod git;
mod githost;

pub mod command;
pub mod jira;
pub mod settings;