From bf96f8292c0e9818c8b5fc8713ca7506e4338a49 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 6 May 2026 03:38:32 +0900 Subject: refactor(console): add write macros and migrate commands to use them --- crates/mozart/src/commands/archive.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/mozart/src/commands/archive.rs') diff --git a/crates/mozart/src/commands/archive.rs b/crates/mozart/src/commands/archive.rs index 4386e16..044178f 100644 --- a/crates/mozart/src/commands/archive.rs +++ b/crates/mozart/src/commands/archive.rs @@ -1,5 +1,5 @@ use clap::Args; -use mozart_core::console::Verbosity; +use mozart_core::console_writeln; use std::path::PathBuf; #[derive(Args)] @@ -233,7 +233,7 @@ pub async fn execute( } else { target_path.display().to_string() }; - console.write_stdout(&format!("Created: {}", display_path), Verbosity::Normal); + console_writeln!(console, &format!("Created: {}", display_path),); Ok(()) } -- cgit v1.3.1