1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 05:40:11 +01:00
gocsaf/cmd/csaf_checker/report.go
2021-12-09 01:37:16 +01:00

16 lines
216 B
Go

package main
type Requirement struct {
Num int
Description string
Messages []string
}
type domain struct {
Name string
Requirements []Requirement
}
type report struct {
Domains []domain
}