jirun 0.24.0

A CLI tool that generates JIRA sub-task(s) with pre-populated field values
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod commands;
pub mod config;
pub mod env;
pub mod jira;
pub mod task_context;
pub mod utils;

#[cfg(test)]
pub mod common;

pub type JirunResult<T> = Result<T, Box<dyn std::error::Error>>;

pub fn run() -> JirunResult<()> {
    commands::run()
}