nixpacks 0.1.8

Generate an OCI compliant image based off app source
Documentation
use colored::Colorize;

pub struct Logger {}

impl Logger {
    pub fn new() -> Logger {
        Logger {}
    }

    pub fn log_section(&self, msg: &str) {
        println!("=== {} ===", msg.magenta().bold());
    }

    pub fn log_step(&self, msg: &str) {
        println!("=> {}", msg);
    }
}

impl Default for Logger {
    fn default() -> Self {
        Self::new()
    }
}