Comment out unused fields

This commit is contained in:
Paul van Tilburg 2022-02-11 14:21:12 +01:00
parent d8f61486f9
commit 24c1d7a22a
1 changed files with 2 additions and 2 deletions

View File

@ -26,9 +26,9 @@ fn api_url(site_id: &str, endpoint: &str) -> Result<Url, ParseError> {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
struct ApiEnergy { struct ApiEnergy {
/// Total energy produced today (kWh) /// Total energy produced today (kWh)
pv_today: u32, // pv_today: u32,
/// Total energy produced this month (kWh) /// Total energy produced this month (kWh)
pv_month: u32, // pv_month: u32,
/// Total energy produced since installation (kWh) /// Total energy produced since installation (kWh)
pv_to_date: u32, pv_to_date: u32,
} }