dolly-cli 0.1.1

Like apt, but for GitHub repositories — clone, build, install and update tools from source.
Documentation
1
2
3
4
5
6
use owo_colors::OwoColorize;

pub fn status(action: &str, subject: &str) {
    let padded = format!("{action:>12}");
    eprintln!("{} {subject}", padded.bold().green());
}