cleanup-branches 0.1.0

A CLI tool to delete local Git branches that are already merged into a target branch
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{cli::run, colour::{Colour, paint}};

mod cli;
mod colour;
mod git;

fn main() {
    if let Err(e) = run() {
        eprintln!("{}", paint(Colour::Red, &format!("Error: {e}")));
        std::process::exit(1);
    }
}