Initial working prototype
This commit is contained in:
parent
46a865b97c
commit
b5a29f1f54
10 changed files with 437 additions and 1 deletions
15
internal/types/types.go
Normal file
15
internal/types/types.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package types
|
||||
|
||||
type Team struct {
|
||||
Slug string
|
||||
Abbreviation string
|
||||
DisplayName string
|
||||
Color string
|
||||
AlternateColor string
|
||||
Logo string
|
||||
}
|
||||
|
||||
type Sport struct {
|
||||
Name string
|
||||
Teams []Team
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue