rs_hack/commands/mod.rs
1//! Per-command lib API for rs-hack subcommands.
2//!
3//! Each module exposes `pub fn run(args: …Args) -> Result<…Result>` so embedders (MCP server,
4//! yah, tests) can drive the same logic without shelling out. The CLI in `main.rs` is a thin
5//! clap → struct → `run()` translator that adds rendering on top.
6
7pub mod comments;
8pub mod doc_coverage;
9pub mod find;
10pub mod match_audit;
11pub mod neighbors;
12pub mod summary;