From 04e5d2ad28af2c0b561ed4443eabddc4ee70d1f2 Mon Sep 17 00:00:00 2001 From: krolxon Date: Fri, 26 Apr 2024 14:32:58 +0530 Subject: alot of edge cases removed, ui improvments --- src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cli.rs') diff --git a/src/cli.rs b/src/cli.rs index 131f746..2992952 100755 --- a/src/cli.rs +++ b/src/cli.rs @@ -6,10 +6,10 @@ use clap::{Parser, Subcommand}; pub struct Args { /// No TUI #[arg(short= 'n', default_value="false")] - pub no_tui: bool, + pub tui: bool, #[command(subcommand)] - pub command: Command, + pub command: Option, } #[derive(Debug, Subcommand)] -- cgit v1.2.3