Skip to main content

fancy_tree/
lib.rs

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