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