sorare/types/sport.go

10 lines
141 B
Go
Raw Permalink Normal View History

2024-03-08 10:48:21 +00:00
package types
type Sport string
const (
SportFootball Sport = "FOOTBALL"
SportNba Sport = "NBA"
SportBaseBall Sport = "BASEBALL"
)