1 2 3 4 5 6 7 8 9 10 11 12
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 )