dolly-cli 0.1.3

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

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

pub fn detail(message: &str) {
    eprintln!("             {message}");
}