1
2
3
4
5
6
use colored::*;

pub fn show(msg: String) {
	eprintln!("[{}] {}", "ERRO".red(), msg);
	eprintln!("[{}] Use '-h' flag for more info about command.", "INFO".blue());
}