mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 11:55:40 +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
|
||||
|
||||
type Requirement struct {
|
||||
Num int
|
||||
Description string
|
||||
Messages []string
|
||||
type requirement struct {
|
||||
Num int `json:"num"`
|
||||
Description string `json:"description"`
|
||||
Messages []string `json:"messages"`
|
||||
}
|
||||
|
||||
type domain struct {
|
||||
Name string
|
||||
Requirements []Requirement
|
||||
Name string `json:"name"`
|
||||
requirements []requirement `json:"requirements"`
|
||||
}
|
||||
|
||||
type report struct {
|
||||
Domains []domain
|
||||
Domains []domain `json:"domains"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue