kotoba_graph/
lib.rs

1//! kotoba-graph - Kotoba Graph Components
2
3pub mod graph;
4pub mod prelude {
5    // Re-export commonly used items
6    pub use crate::graph::*;
7}
8
9#[cfg(test)]
10mod tests {
11    // Tests will be added here
12}