refactor: export as flat hierarchy

BREAKING CHANGE: no more exported modules.
Everything is on the main export now.
This commit is contained in:
EdJoPaTo
2021-10-24 03:38:00 +02:00
parent 8e5a57bd8e
commit f0bbd09603
2 changed files with 8 additions and 6 deletions
+6 -4
View File
@@ -1,6 +1,5 @@
#![allow(clippy::must_use_candidate)]
use crate::identifier::{TreeIdentifier, TreeIdentifierVec};
use std::collections::HashSet;
use tui::buffer::Buffer;
use tui::layout::{Corner, Rect};
@@ -9,10 +8,13 @@ use tui::text::Text;
use tui::widgets::{Block, StatefulWidget, Widget};
use unicode_width::UnicodeWidthStr;
pub mod flatten;
pub mod identifier;
mod flatten;
mod identifier;
pub use self::flatten::flatten;
pub use flatten::{flatten, Flattened};
pub use identifier::{
get_without_leaf as get_identifier_without_leaf, TreeIdentifier, TreeIdentifierVec,
};
#[derive(Debug, Default, Clone)]
pub struct TreeState {