blob: c6f1b8d80a4e1d33e7fc19c6e055ce5968a5e2dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
package feed
//go:generate stringer -linecomment -type=DataVersion
import (
"encoding/json"
"fmt"
)
// Data version for NVD feeds and feed items.
type DataVersion byte
const (
V40 DataVersion = iota // 4.0
)
// Unmarshal data version from JSON.
func (me *DataVersion) 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 "4.0":
*me = V40
default:
// return error
return fmt.Errorf("unknown data version: %s", s)
}
// return success
return nil
}
|