We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 820ef4a commit e0c00faCopy full SHA for e0c00fa
osv/json.go
@@ -2,6 +2,22 @@
2
// Use of this source code is governed by a BSD-style
3
// license that can be found in the LICENSE file.
4
5
+// Package osv implements the <name-pending> shared vulnerability
6
+// format, with the Go specific extensions.
7
+//
8
+// As this package is intended for use with the Go vulnerability
9
+// database, only the subset of features which are used by that
10
+// database are implemented (for instance, only the SEMVER affected
11
+// range type is implemented).
12
13
+// The format of the Go specific "extra" JSON object is as follows:
14
15
+// {
16
+// "symbols": [ string ],
17
+// "goos": [ string ],
18
+// "goarch": [ string ],
19
+// "url": string
20
+// }
21
package osv
22
23
import (
0 commit comments