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); } }