party 0.3.1

A command execution automator
Documentation
1
2
3
4
5
6
7
8
9
//! Main command runner
mod async_runner;
mod command_handler;
mod run_report;
mod sync_runner;

pub use async_runner::run_async_commands;
pub use sync_runner::run_single_command;
pub use sync_runner::run_sync_commands;