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