18 lines
252 B
Go
18 lines
252 B
Go
|
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
|
||
|
}
|