1 2 3 4 5 6 7 8 9 10 11 12
//! knot — Codebase Graph + Vector RAG Indexer library //! //! Provides shared modules for both the batch indexer and the MCP server. pub mod cli_tools; pub mod config; pub mod db; pub mod mcp_handler; pub mod mcp_tools; pub mod models; pub mod pipeline; pub mod utils;