codemod-cli 0.1.0

CLI interface for codemod-pilot — transform your codebase by example
1
2
3
4
5
6
7
8
9
//! Output formatting modules.

pub mod diff;
pub mod interactive;
pub mod report;

pub use diff::DiffPrinter;
pub use interactive::InteractivePrompt;
pub use report::ReportPrinter;