package cvss //go:generate stringer -linecomment -type=Version // CVSS version type Version byte const ( V20 Version = iota // 2.0 V30 // 3.0 V31 // 3.1 )