From 7772545eb06e8a956410711cf4fd4b1e0622fabd Mon Sep 17 00:00:00 2001 From: Ondrej Novak Date: Thu, 19 Feb 2026 22:06:05 +0100 Subject: [PATCH] pass time as cli option instead of arg --- src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli.rs b/src/cli.rs index d294723..5f59c89 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -32,6 +32,7 @@ pub struct Args { #[arg(long)] pub list: bool, + #[arg(short, long)] pub time: Option, }