compiling againg

This commit is contained in:
piecka 2025-03-26 16:15:40 +01:00
parent 5778b84891
commit 133aac1aac

View file

@ -1,5 +1,5 @@
use std::fs;
use std::io::{self, Read, Write};
use std::io::{Read, Write};
use std::path::{Path, PathBuf};
use std::collections::VecDeque;
use colored::Colorize;
@ -164,11 +164,11 @@ fn main() -> Result<()> {
history.push_back(format!("{}: {}", "Copied".green(), src.display()));
println!("\x1B[2J\x1B[H"); // Clear screen
println!("{}", file_pb);
println!("{}", file_pb.message());
for item in &history {
println!("{}", item);
}
println!("{}", summary_pb);
println!("{}", summary_pb.message());
}
Err(e) => {
eprintln!("{}: {}", "Error".red(), e);