aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/category.go
blob: 45b8947a7d4d07708f78b81d872ee08632e9de2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CVSS vector parser.
package cvss

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

// CVSS metric category.
type Category byte

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