use PathBuf;
/// returns [`Vec`] of [`PathBuf`]s with which to operate on
/// # Examples
///
/// ```
/// use std::path::PathBuf;
/// use treewalk::walk::utils;
/// let test_vec: Vec<PathBuf> = vec!["./foo", "./bar"]
/// .iter()
/// .map(|path| PathBuf::from(path))
/// .collect();
/// assert_eq!(test_vec, utils::tree!["./foo", "./bar"]);
/// ```
///
pub use tree;