sorare/types/so5state.go

10 lines
159 B
Go
Raw Normal View History

2024-03-08 10:48:21 +00:00
package types
type So5State string
const (
So5StateLive So5State = "LIVE"
So5StateUpcoming So5State = "UPCOMING"
So5StatePast So5State = "PAST"
)