salt 0.2.2

Task management for the CLI
1
2
3
4
5
6
7
8
9
use crate::args;
use crate::cli;
use crate::get_and_parse;

pub fn run(args: args::Arguments) -> anyhow::Result<()> {
	let config = get_and_parse::parse().unwrap();
	cli::match_cmds(args, config)?;
	Ok(())
}