git-fetch-commits 0.1.3

A cool little tool for pulling commit data from a git repository
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use clap::Parser;
use git_fetch_commits::{extract_logs, Args};

fn main() {
    let args = Args::parse();
    // eprintln!("Args => {:?}", args);

    match extract_logs(&args) {
        Ok(()) => {
            //eprintln!("Complete"),
        }
        Err(e) => eprintln!("Err {:?}", e),
    };

    ()
}