lazy_badger/lib.rs
1#![doc = include_str!("../README.md")]
2
3/// Supported bash extension of script
4const BASH_EXTENSION: &str = "sh";
5
6/// Read scripts implementation
7mod read;
8/// Run scripts implementation
9mod run;
10
11// ********** Re-exports ********** //
12pub use self::{
13 read::{find_script, list_scripts, FindScriptError, ListScriptsError},
14 run::{run_script, RunScriptError},
15};