From 6f3802fd9f39c4e5847d130b4417b5cdfb66972d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 22 Feb 2026 22:53:09 +0900 Subject: refactor(console): add console_format! proc macro and migrate all commands Introduce a Symfony Console-style tag macro that replaces verbose patterns like `console::info(&format!("text {name}"))` with `console_format!("text {name}")`. Supports all 6 tag types (info, comment, error, question, highlight, warning) with format argument distribution across multiple tagged segments. Co-Authored-By: Claude Opus 4.6 --- crates/mozart/src/commands/prohibits.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'crates/mozart/src/commands/prohibits.rs') diff --git a/crates/mozart/src/commands/prohibits.rs b/crates/mozart/src/commands/prohibits.rs index a6a70d5..55a8175 100644 --- a/crates/mozart/src/commands/prohibits.rs +++ b/crates/mozart/src/commands/prohibits.rs @@ -1,4 +1,5 @@ use clap::Args; +use mozart_core::console_format; use std::path::PathBuf; #[derive(Args)] @@ -62,10 +63,11 @@ pub async fn execute( if results.is_empty() { println!( "{}", - mozart_core::console::info(&format!( - "{} {} can be installed.", - args.package, args.version - )) + console_format!( + "{} {} can be installed.", + args.package, + args.version + ) ); return Ok(()); } -- cgit v1.3.1