ryo-app 0.1.0

[preview] Application layer for RYO - Project management, Intent handling, API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Graph module - Code relationship analysis
//!
//! Provides high-level API for code graph operations.
//!
//! ## Structure
//! - `types`: Core types (GraphStats, CodeNode, NodeKind)
//! - `api`: GraphApi for graph operations
//! - `summary`: AI-readable summary generation

mod api;
mod summary;
mod types;

pub use api::GraphApi;
pub use summary::SummaryBuilder;
pub use types::{CodeNode, GraphError, GraphStats, NodeKind};