10 lines
159 B
Go
10 lines
159 B
Go
package types
|
|
|
|
type So5State string
|
|
|
|
const (
|
|
So5StateLive So5State = "LIVE"
|
|
So5StateUpcoming So5State = "UPCOMING"
|
|
So5StatePast So5State = "PAST"
|
|
)
|