yamis 1.2.0

Task runner for teams and individuals.
Documentation
1
2
3
4
5
6
7
8
9
use std::collections::HashMap;
use std::error;

/// Alias the result type for convenience. We simply return a dynamic error as these should
/// be displayed to the user as they are.
pub(crate) type DynErrResult<T> = Result<T, Box<dyn error::Error>>;

/// Extra args passed that will be mapped to the task.
pub(crate) type TaskArgs = HashMap<String, Vec<String>>;