pub mod fs;
#[cfg(feature = "glob")]
pub mod glob;
#[cfg(feature = "json")]
pub mod json;
#[cfg(feature = "toml")]
pub mod toml;
#[cfg(feature = "yaml")]
pub mod yaml;
pub use dirs;
#[macro_export]
macro_rules! string_vec {
() => {{
Vec::<String>::new()
}};
($($item:expr),+ $(,)?) => {{
vec![
$( String::from($item), )*
]
}};
}