codeclippy 0.0.1

Codeclippy is a utility to scan, map, and search code objects.
Documentation
1
2
3
4
5
6
7
8
use std::env;

use codeclippy::run_cli;

fn main() {
    let args: Vec<String> = env::args().collect();
    run_cli(args);
}