arun 0.1.0

Library & Command-line runner tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// region:    --- Modules

mod config;
mod error;
mod runner;

pub use self::error::{Error, Result};
pub use config::*;
pub use runner::*;

pub mod utils;

// endregion: --- Modules