From 49b0884701a84731652fc934d428932ff6029bd4 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 5 May 2026 17:29:12 +0900 Subject: chore: remove redundant comments --- crates/mozart/src/commands/global.rs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'crates/mozart/src/commands/global.rs') diff --git a/crates/mozart/src/commands/global.rs b/crates/mozart/src/commands/global.rs index 12b3a4e..1a8a5f8 100644 --- a/crates/mozart/src/commands/global.rs +++ b/crates/mozart/src/commands/global.rs @@ -10,8 +10,6 @@ pub struct GlobalArgs { pub args: Vec, } -// ─── Main entry point ──────────────────────────────────────────────────────── - pub async fn execute( args: &GlobalArgs, cli: &super::Cli, @@ -51,8 +49,6 @@ pub async fn execute( Box::pin(crate::commands::execute(&new_cli)).await } -// ─── Helpers ───────────────────────────────────────────────────────────────── - fn append_global_options(cli: &super::Cli) -> Vec { let mut opts: Vec = Vec::new(); @@ -95,8 +91,6 @@ fn append_global_options(cli: &super::Cli) -> Vec { opts } -// ─── Tests ──────────────────────────────────────────────────────────────────── - #[cfg(test)] mod tests { use super::*; @@ -107,8 +101,6 @@ mod tests { Cli::try_parse_from(["mozart", "about"]).unwrap() } - // ── append_global_options tests ─────────────────────────────────────────── - #[test] fn test_append_global_options_empty() { let cli = default_cli(); -- cgit v1.3.1