aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/dataformat.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/feed/dataformat.go')
-rw-r--r--internal/feed/dataformat.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/internal/feed/dataformat.go b/internal/feed/dataformat.go
deleted file mode 100644
index bb3f8f8..0000000
--- a/internal/feed/dataformat.go
+++ /dev/null
@@ -1,36 +0,0 @@
-package feed
-
-//go:generate stringer -linecomment -type=DataFormat
-
-import (
- "encoding/json"
- "fmt"
-)
-
-// Data format for NVD feeds and feed items.
-type DataFormat byte
-
-const (
- MitreFormat DataFormat = iota // MITRE
-)
-
-// Unmarshal DataFormat from JSON.
-func (me *DataFormat) UnmarshalJSON(b []byte) error {
- // decode string, check for error
- var s string
- if err := json.Unmarshal(b, &s); err != nil {
- return err
- }
-
- // check value
- switch s {
- case "MITRE":
- *me = MitreFormat
- default:
- // return error
- return fmt.Errorf("unknown data format: %s", s)
- }
-
- // return success
- return nil
-}