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.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/internal/cvss/cvss.go b/internal/cvss/cvss.go
deleted file mode 100644
index 2bae0d7..0000000
--- a/internal/cvss/cvss.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// CVSS vector parser.
-package cvss
-
-// Metric key.
-type Key interface {
- // Get full name.
- Name() string
-
- // Get category.
- Category() Category
-
- // Return string representation.
- String() string
-}
-
-// CVSS metric.
-type Metric interface {
- // Get metric key.
- Key() Key
-
- // Return string representation of metric.
- String() string
-}