mlbstats/game.go

18 lines
252 B
Go
Raw Normal View History

2024-07-02 04:16:44 +00:00
package main
import "scm.dairydemon.net/filifa/mlblive/internal/statsapi"
type Team struct {
City string
Name string
}
type Game struct {
GUID string
HomeTeam Team
AwayTeam Team
HomeScore int
AwayScore int
Plays []statsapi.Play
}