From 4a2794c724690e9a65d1a98eb47aab66d2c81c21 Mon Sep 17 00:00:00 2001 From: Ondrej Novak Date: Thu, 19 Feb 2026 21:33:40 +0100 Subject: [PATCH] add cli arg to set timetable padding --- src/cli.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cli.rs b/src/cli.rs index a58bd29..91bd409 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -20,6 +20,10 @@ pub struct Args { #[arg(short, long)] pub date: Option, + /// number of preceding and succeeding time records in the timetable + #[arg(short, long, default_value_t = 5)] + pub padding: i8, + #[arg(short, long, default_value = "Local")] pub local: String,