aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/cvss.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cvss/cvss.go')
-rw-r--r--internal/cvss/cvss.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/internal/cvss/cvss.go b/internal/cvss/cvss.go
index f260ce2..b92d819 100644
--- a/internal/cvss/cvss.go
+++ b/internal/cvss/cvss.go
@@ -6,31 +6,11 @@ import (
"strings"
)
-//go:generate stringer -linecomment -type=Version
-//go:generate stringer -linecomment -type=Category
//go:generate stringer -linecomment -type=v2MetricKey
//go:generate stringer -linecomment -type=v2Metric
//go:generate stringer -linecomment -type=v3MetricKey
//go:generate stringer -linecomment -type=v3Metric
-// CVSS version
-type Version byte
-
-const (
- V20 Version = iota // 2.0
- V30 // 3.0
- V31 // 3.1
-)
-
-// CVSS metric category.
-type Category byte
-
-const (
- Base Category = iota // Base
- Temporal // Temporal
- Environmental // Environmental
-)
-
// CVSS metric key.
type v2MetricKey byte