1 2 3 4 5 6 7 8
// Graph layer — petgraph in-memory, edges persisted to SurrealKV (M-04) // Edges stored as graph:edge:<from>:<kind>:<to> keys pub mod edges; #[allow(clippy::module_inception)] pub mod graph; pub use edges::{Edge, EdgeKind}; pub use graph::Graph;