Remove unused fields in game struct.

This commit is contained in:
calcu1on 2025-04-05 21:19:02 -04:00
parent b07c4abd88
commit bc974f44f4

View File

@ -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)]