salt 0.2.3

Task management for the CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod args;
mod cli;
mod config;
mod get_and_parse;
mod macros;
mod node;
mod run;
mod task;
pub use anyhow::Context;
pub use structopt::StructOpt;

fn main() -> anyhow::Result<()> {
	run::run(args::Arguments::from_args())?;
	Ok(())
}