aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/v2version_string.go
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-02-01 14:42:44 -0500
committerPaul Duncan <pabs@pablotron.org>2022-02-01 14:42:44 -0500
commit3044aef20f4aecb7963e826b976c6d72a970cda1 (patch)
tree114295370dc27f17d5115f9cf4634e5e01fad20b /internal/feed/v2version_string.go
parent68714974f6d2887f66101aa020e25faea1631467 (diff)
downloadcvez-3044aef20f4aecb7963e826b976c6d72a970cda1.tar.bz2
cvez-3044aef20f4aecb7963e826b976c6d72a970cda1.zip
internal/feed: add v2version, v3version, tests
Diffstat (limited to 'internal/feed/v2version_string.go')
-rw-r--r--internal/feed/v2version_string.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/internal/feed/v2version_string.go b/internal/feed/v2version_string.go
new file mode 100644
index 0000000..6b13870
--- /dev/null
+++ b/internal/feed/v2version_string.go
@@ -0,0 +1,23 @@
+// Code generated by "stringer -linecomment -type=V2Version"; DO NOT EDIT.
+
+package feed
+
+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[V20-0]
+}
+
+const _V2Version_name = "2.0"
+
+var _V2Version_index = [...]uint8{0, 3}
+
+func (i V2Version) String() string {
+ if i >= V2Version(len(_V2Version_index)-1) {
+ return "V2Version(" + strconv.FormatInt(int64(i), 10) + ")"
+ }
+ return _V2Version_name[_V2Version_index[i]:_V2Version_index[i+1]]
+}