fjordgard

A desktop clock application
Log | Files | Refs | README | LICENSE

commit 1939e9b2049a806e877f2852034597b2eabf87cc
parent dc0951ab6554061992e7b7cb4e92add77f43fb6b
Author: Sylvia Ivory <git@sivory.net>
Date:   Sun, 15 Jun 2025 20:26:02 -0700

Ensure geocode api options are public

Diffstat:
Mcrates/weather/src/model.rs | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/crates/weather/src/model.rs b/crates/weather/src/model.rs @@ -10,10 +10,10 @@ pub(crate) struct MeteoResponse<T> { #[derive(Serialize)] #[serde(default)] pub struct GeocodeOptions { - count: Option<usize>, - language: Option<String>, - api_key: Option<String>, - country_code: Option<String>, + pub count: Option<usize>, + pub language: Option<String>, + pub api_key: Option<String>, + pub country_code: Option<String>, } #[derive(Deserialize, Debug)]