1 2 3 4 5 6
use owo_colors::OwoColorize; pub fn status(action: &str, subject: &str) { let padded = format!("{action:>12}"); eprintln!("{} {subject}", padded.bold().green()); }