aboutsummaryrefslogtreecommitdiff
path: root/internal/cpe/part_string.go
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-02-04 00:35:31 -0500
committerPaul Duncan <pabs@pablotron.org>2022-02-04 00:35:31 -0500
commit9c17b97cd0f83be3fff9fa4e87fd1d29052ea616 (patch)
tree0d97030a0d0c3ad983be281ce89f80571338887f /internal/cpe/part_string.go
parent92400d731546557d110c9c3cc3906d700f83dda8 (diff)
downloadcvez-9c17b97cd0f83be3fff9fa4e87fd1d29052ea616.tar.bz2
cvez-9c17b97cd0f83be3fff9fa4e87fd1d29052ea616.zip
rename to github.com/pablotron/cvez, remove internal libs
Diffstat (limited to 'internal/cpe/part_string.go')
-rw-r--r--internal/cpe/part_string.go41
1 files changed, 0 insertions, 41 deletions
diff --git a/internal/cpe/part_string.go b/internal/cpe/part_string.go
deleted file mode 100644
index 98b9fd3..0000000
--- a/internal/cpe/part_string.go
+++ /dev/null
@@ -1,41 +0,0 @@
-// Code generated by "stringer -linecomment -type=Part"; DO NOT EDIT.
-
-package cpe
-
-import "strconv"
-
-func _() {
- // An "invalid array index" compiler error signifies that the constant values have changed.
- // Re-run the stringer command to generate them again.
- var x [1]struct{}
- _ = x[ApplicationPart-97]
- _ = x[OperatingSystemPart-111]
- _ = x[HardwarePart-104]
- _ = x[AnyPart-42]
- _ = x[NAPart-45]
-}
-
-const (
- _Part_name_0 = "*"
- _Part_name_1 = "-"
- _Part_name_2 = "a"
- _Part_name_3 = "h"
- _Part_name_4 = "o"
-)
-
-func (i Part) String() string {
- switch {
- case i == 42:
- return _Part_name_0
- case i == 45:
- return _Part_name_1
- case i == 97:
- return _Part_name_2
- case i == 104:
- return _Part_name_3
- case i == 111:
- return _Part_name_4
- default:
- return "Part(" + strconv.FormatInt(int64(i), 10) + ")"
- }
-}