mom-task 1.3.0

Task runner for teams and individuals.
Documentation
1
2
3
4
5
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>>;