fancy_tree/
lib.rs

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 sorting;
10pub mod tree;
11
12/// The standard result type.
13pub type Result<T = (), E = Box<dyn Error>> = core::result::Result<T, E>;