mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 18:15:42 +01:00
Fixed golint warning.
This commit is contained in:
parent
6692e45644
commit
000a3db17e
1 changed files with 7 additions and 7 deletions
|
|
@ -1,16 +1,16 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
type Requirement struct {
|
type requirement struct {
|
||||||
Num int
|
Num int `json:"num"`
|
||||||
Description string
|
Description string `json:"description"`
|
||||||
Messages []string
|
Messages []string `json:"messages"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type domain struct {
|
type domain struct {
|
||||||
Name string
|
Name string `json:"name"`
|
||||||
Requirements []Requirement
|
requirements []requirement `json:"requirements"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type report struct {
|
type report struct {
|
||||||
Domains []domain
|
Domains []domain `json:"domains"`
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue