mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 05:40:11 +01:00
16 lines
216 B
Go
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
|
|
}
|