23 lines
377 B
Go
Raw Normal View History

2018-01-19 09:28:56 +10:00
package main
import "github.com/davecgh/go-spew/spew"
type FeedLockLinkType int
const (
Racing FeedLockLinkType = iota
Market
)
var feedLockLinkTypes = [...]string{
"racing.Races.raceID",
"racing.Markets.marketID",
}
func (f FeedLockLinkType) String() string { return feedLockLinkTypes[f] }
func main() {
2018-01-19 15:17:32 +10:00
test := FeedLockLinkType(Racing).String()
2018-01-19 09:28:56 +10:00
spew.Dump(test)
}