pub mod config;
pub mod file;
pub mod install;
pub mod list;
pub mod profile;
pub mod search;
pub mod sync;
pub mod uninstall;
pub mod update;
pub mod upgrade;
use colored::Colorize;
pub fn info(msg: &str) {
println!("{} {}", "==>".blue(), msg);
}
pub fn success(msg: &str) {
println!("{} {}", "==>".green(), msg);
}
pub fn warn(msg: &str) {
eprintln!("{} {}", "Warning:".yellow(), msg);
}
pub fn error(msg: &str) {
eprintln!("{} {}", "Error:".red(), msg);
}