From a768d908eda603b9dd0b4844a3b538c2a1c7c552 Mon Sep 17 00:00:00 2001 From: mattbk Date: Fri, 17 Oct 2025 16:39:19 -0500 Subject: [PATCH] Make spotter optional. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index cfea471..b2f8f62 100644 --- a/src/main.rs +++ b/src/main.rs @@ -61,7 +61,7 @@ struct Cli { /// Spotter callsign (e.g. W1CDN) #[arg(short = 's', long)] - spotter: String, + spotter: Option, } /// Convert a byte slice into a hex-dump string for debugging purposes.