tree-tui 0.1.0

An interactive terminal UI for exploring tokei code statistics.
1
2
3
4
5
6
7
8
//! Directory-tree data model built from tokei results.

mod build;
mod node;
pub mod view;

pub use build::build_tree;
pub use node::{NodeId, NodeKind, SortDir, SortKey, Stats, Tree, TreeNode};