yamis 1.2.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 yamis::print_utils::YamisOutput;

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

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