1 2 3 4 5 6 7 8 9 10
//! ai-refactor-cli library facade. //! //! Exposes the scanner API so it can be used from benchmarks and integration //! tests without going through the CLI binary. pub mod ast; pub mod detectors; pub mod report; pub mod rules; pub mod scanner;