1
2
3
4
5
6
7
8
/// Structures to describe a position in a [Tree]
pub(crate) mod path;
/// Structures to build and manipulate [Tree]s
pub(crate) mod tree;

pub mod prelude {
    pub use crate::{path::Path, tree::DiffTree, tree::Tree};
}