1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Lazy badger library
//!
//! All required functionalities to support the lazy-badger binary

/// Supported bash extension of script
const BASH_EXTENSION: &str = "sh";

/// Read scripts implementation
mod read;
/// Run scripts implementation
mod run;

// ********** Re-exports ********** //
pub use self::{
    read::{find_script, list_scripts, FindScriptError, ListScriptsError},
    run::{run_script, RunScriptError, ScriptOutput},
};