fix: add ansi support and remove emoji

This commit is contained in:
2026-08-23 07:19:30 +05:00
parent 7dd2dd7f33
commit beab08cf67
5 changed files with 30 additions and 18 deletions
+5
View File
@@ -12,6 +12,11 @@ use clap::Parser;
use colored::Colorize;
fn main() -> ExitCode {
#[cfg(windows)]
if enable_ansi_support::enable_ansi_support().is_err() {
colored::control::set_override(false);
}
let cli = cli::Cli::parse();
match run(&cli) {
Ok(()) => ExitCode::SUCCESS,