mom-task 1.3.0

Task runner for teams and individuals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(feature = "runtime")]
use mom_task::print_utils::MomOutput;

#[cfg(feature = "runtime")]
use mom_task::cli::exec;

#[cfg(feature = "runtime")]
fn main() {
    match exec() {
        Ok(_) => {}
        Err(e) => {
            eprint!("{}", e.to_string().mom_error());
            std::process::exit(1);
        }
    }
}