From bc974f44f4177321c1e7b9f107ed85a4e6525c4f Mon Sep 17 00:00:00 2001 From: calcu1on Date: Sat, 5 Apr 2025 21:19:02 -0400 Subject: [PATCH] Remove unused fields in game struct. --- src/redsox.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/redsox.rs b/src/redsox.rs index 8696353..1331d8d 100644 --- a/src/redsox.rs +++ b/src/redsox.rs @@ -23,10 +23,8 @@ pub struct Date { pub struct Game { pub season: String, pub teams: Teams, - // pub date: String, pub official_date: String, pub game_date: String, - // pub opponent: String, } #[derive(Serialize, Deserialize, Debug, Clone)]