From 1398445a675a147f73cfdeb0fe60bfbd90661f34 Mon Sep 17 00:00:00 2001 From: Reilly Wood Date: Sat, 20 Jan 2024 18:53:59 -0800 Subject: [PATCH] Clean up CLI args --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5d6c2d0..6bbf309 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,12 +10,12 @@ use systemctl_tui::{ #[derive(Parser, Debug)] #[command(version = version(), about = "A simple TUI for systemd services")] struct Args { - /// Enable performance tracing (in Chromium Event JSON format) - #[clap(short, long)] - trace: bool, /// The scope of the services to display #[clap(short, long, default_value = "all")] scope: Scope, + /// Enable performance tracing (in Chromium Event JSON format) + #[clap(short, long)] + trace: bool, } #[derive(Parser, Debug, ValueEnum, Clone)]