From 133aac1aaced70867c113e6a2a2d64dd3847fe28 Mon Sep 17 00:00:00 2001 From: piecka Date: Wed, 26 Mar 2025 16:15:40 +0100 Subject: [PATCH] compiling againg --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4ef093e..d8e0aaf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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);