aboutsummaryrefslogtreecommitdiff
path: root/cvss/version.go
blob: c46c893f306dc4de7b31037e4e71110ddccc3809 (plain)
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
)