mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 11:55:40 +01:00
16 lines
335 B
Go
16 lines
335 B
Go
package main
|
|
|
|
type requirement struct {
|
|
Num int `json:"num"`
|
|
Description string `json:"description"`
|
|
Messages []string `json:"messages"`
|
|
}
|
|
|
|
type domain struct {
|
|
Name string `json:"name"`
|
|
requirements []requirement `json:"requirements"`
|
|
}
|
|
|
|
type report struct {
|
|
Domains []domain `json:"domains"`
|
|
}
|