1 2 3 4 5 6 7 8 9 10 11
pub fn init() { #[cfg(windows)] { if let Err(e) = colored::control::set_virtual_terminal(true) { eprintln!("Warning: Failed to enable virtual terminal: {:?}", e); } } #[cfg(not(windows))] let _ = (); }