add cli arg to set timetable padding

This commit is contained in:
Ondrej Novak 2026-02-19 21:33:40 +01:00
parent 9394059d5f
commit 4a2794c724
1 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,10 @@ pub struct Args {
#[arg(short, long)]
pub date: Option<String>,
/// 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,