func init()

in readers/apiserver/watchlist/internal/watchlist/watchlist.go [116:127]


func init() {
	var i uint32 = 0

	for {
		rt := RetrieveType(1 << i)
		if strings.HasPrefix(rt.String(), "RetrieveType") {
			break
		}
		rtMap[rt] = nil
		i++
	}
}