16 lines
225 B
Go
16 lines
225 B
Go
|
package types
|
||
|
|
||
|
type Team struct {
|
||
|
Slug string
|
||
|
Abbreviation string
|
||
|
DisplayName string
|
||
|
Color string
|
||
|
AlternateColor string
|
||
|
Logo string
|
||
|
}
|
||
|
|
||
|
type Sport struct {
|
||
|
Name string
|
||
|
Teams []Team
|
||
|
}
|