1use std::error::Error; 2pub use tree::Tree; 3 4pub mod cli; 5pub mod color; 6pub mod config; 7mod git; 8pub mod lua; 9pub mod tree; 10 11/// The standard result type. 12pub type Result<T = (), E = Box<dyn Error>> = core::result::Result<T, E>;