aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/category.go
blob: b6e0b374a1e3362833c1bd2f36291f450ed07f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package cvss

//go:generate stringer -linecomment -type=Category

// CVSS metric category.
type Category byte

const (
  Base Category = iota // Base
  Temporal // Temporal
  Environmental // Environmental
)