Skip to main content

agentic_codebase/graph/
mod.rs

1//! In-memory graph operations for the code graph.
2//!
3//! This module contains the core graph data structure, builder API,
4//! and traversal algorithms. No file I/O or query planning.
5
6pub mod builder;
7pub mod code_graph;
8pub mod traversal;
9
10pub use builder::GraphBuilder;
11pub use code_graph::CodeGraph;