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
13
14
15
pub mod global;
pub mod internal;
pub mod private;
pub mod shared;

use global::GlobalSettings;
use private::ProjectSettings;
use shared::ProjectSettingsShared;

lazy_static! {
    pub static ref GLOBAL_SETTINGS: GlobalSettings = { GlobalSettings::get().unwrap() };
    pub static ref PROJECT_SETTINGS_SHARED: ProjectSettingsShared =
        { ProjectSettingsShared::get().unwrap() };
    pub static ref PROJECT_SETTINGS: ProjectSettings = { ProjectSettings::get().unwrap() };
}