1 2 3 4 5 6 7 8 9
use anyhow::Result; use git_hist::{app, args::Args}; fn main() -> Result<()> { let args = Args::load()?; app::run(args)?; Ok(()) }