aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/cvss.go
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-01-31 14:06:19 -0500
committerPaul Duncan <pabs@pablotron.org>2022-01-31 14:06:19 -0500
commit2a29b254b40bad71fc00a312280c3373b1bb733b (patch)
tree726dbc638868bea1b86958753d10d87b719ad5ac /internal/cvss/cvss.go
parent843c6168690f01a9a4a96f1c6e1aa6e3cde90096 (diff)
downloadcvez-2a29b254b40bad71fc00a312280c3373b1bb733b.tar.bz2
cvez-2a29b254b40bad71fc00a312280c3373b1bb733b.zip
internal/cvss: move category and version to separate files
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