superdiff 2.1.2

Search your codebase for similar blocks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::Parser;
use superdiff::*;

fn main() {
    let mut args = cli::Cli::parse();
    if args.files_from_stdin() {
        args.populate_files_from_stdin();
    }
    args.print();

    let matches = types::JsonRoot::from(comp::get_all_matches(&args));

    printer::matches(&args, &matches);
    printer::conclusion(&args, &matches);
}