Skip to main content

cairn_knowledge_graph/graph/edge/
mod.rs

1mod edge;
2mod edge_type;
3
4pub(crate) mod adjacency_matrix;
5
6// re-export mod edge to reduce the depth of the public module tree.
7// As long as mod edge remains the only public mod in this module,
8// further decomposition of the tree is not useful.
9pub use edge::*;
10pub use edge_type::*;