Initial working prototype

This commit is contained in:
Chandler Swift 2025-01-13 22:50:12 -06:00
parent 46a865b97c
commit b5a29f1f54
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
10 changed files with 437 additions and 1 deletions

15
internal/types/types.go Normal file
View 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
}