codescout 0.15.0

High-performance coding agent toolkit MCP server
Documentation
//! Symbol-level tools backed by the LSP client.

pub mod call_edges;
mod call_graph;

mod display;
mod edit_code;
mod list_overview;
mod references;
mod symbol_at;
mod symbols;

#[cfg(test)]
mod tests;

pub use call_graph::CallGraph;
pub use edit_code::EditCode;
pub use references::References;
pub use symbol_at::SymbolAt;
pub use symbols::Symbols;