github-heatmap 1.0.0

A CLI tool used to scrape a Github profile and mirror the SVG contribution heatmap as Unicode.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;
use std::process;
use github_heatmap::{run, Args};

fn main() {
    let args = Args::parse();  

    if let Err(e) = run(&args) {
        eprintln!("An error occurred: {e}");
        process::exit(1);
    }
}