diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-07 02:56:48 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-07 02:56:48 +0800 |
| commit | 21defab2fc95f1e1d0639b66ab2c449266a114fe (patch) | |
| tree | 587cc0ca98cfc461366375abe62b143ec1ec36b2 /mling/src/bin | |
| parent | 91e847bf873ff2e404554ea7bb97fad7beac0530 (diff) | |
Rename cargo style functions and remove unused imports
Diffstat (limited to 'mling/src/bin')
| -rw-r--r-- | mling/src/bin/mling.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mling/src/bin/mling.rs b/mling/src/bin/mling.rs index 587aeb9..d48f439 100644 --- a/mling/src/bin/mling.rs +++ b/mling/src/bin/mling.rs @@ -1,6 +1,5 @@ use std::{env::current_dir, process::exit}; -use colored::Colorize; use mingling::{ Program, hook::ProgramHook, @@ -65,7 +64,7 @@ fn main() { if result.exit_code == 0 && render_output { println!("{}", result.trim()); } else if error_output { - eprintln!("{}", result.trim().bright_red()); + eprintln!("{}", result.trim()); } } exit(result.exit_code); |
