Expand description
§Usage
Namespaced (recommended):
use console_stuff::{console, dialoguer, indicatif, clap};
console::style("hello").red();
Or import everything:
use console_stuff::prelude::*; // Bad idea, really bad idea, just use the namespaced way.
style("hello").red();