duplicate_code 0.2.0

A tool for parsing directories scanning all the files within to find duplicate segments of code across files.
1
2
3
4
5
6
7
8
use structopt::StructOpt;

#[derive(Debug, StructOpt)]
#[structopt(
    name = "duplicate_code",
    about = "A tool for parsing directories scanning all the files within to find duplicate segments of code across files."
)]
pub struct Arguments {}