diff options
Diffstat (limited to 'cvss/version.go')
-rw-r--r-- | cvss/version.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cvss/version.go b/cvss/version.go new file mode 100644 index 0000000..c46c893 --- /dev/null +++ b/cvss/version.go @@ -0,0 +1,12 @@ +package cvss + +//go:generate stringer -linecomment -type=Version + +// CVSS version +type Version byte + +const ( + V20 Version = iota // 2.0 + V30 // 3.0 + V31 // 3.1 +) |