narrate 0.4.2

narrate is a set of CLI app utilities for error handling and status reporting
Documentation
1
2
3
4
5
6
7
//! Print status message to command line

use narrate::{report, Color};

fn main() {
    report::status("Created", "new project `spacetime`", Color::Green);
}