bannergen/internal/types/types.go

16 lines
225 B
Go
Raw Permalink Normal View History

2025-01-13 22:50:12 -06:00
package types
type Team struct {
Slug string
Abbreviation string
DisplayName string
Color string
AlternateColor string
Logo string
}
type Sport struct {
Name string
Teams []Team
}