reef 0.0.28

a package to execute and log system commands
Documentation
use super::Status;
use colored::*;

impl Status {
    pub fn symbol(&self) -> String {
        match self {
            Status::Unknown => format!("{}", "?".yellow().bold()),
            Status::Warning => format!("{}", "!".yellow().bold()),
            Status::Ok => format!("{}", "".green().bold()),
            Status::Error => format!("{}", "X".red().bold().dimmed()),
        }
    }
}