Documentation ¶ Index ¶ type Entry func (e Entry) Key() string type Verdict Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Entry ¶ type Entry struct { Package string `json:"package"` Version string `json:"version,omitempty"` Verdict Verdict `json:"verdict"` Reason string `json:"reason,omitempty"` Status int `json:"status,omitempty"` Timestamp string `json:"timestamp,omitempty"` } func (Entry) Key ¶ func (e Entry) Key() string type Verdict ¶ type Verdict string const ( // Allowed is the zero-value verdict: the coordinate is permitted. It is // the empty string so an unset Verdict reads as "allowed". Allowed Verdict = "" Blocked Verdict = "blocked" Warning Verdict = "warning" ) Source Files ¶ View all Source files verdict.go Click to show internal directories. Click to hide internal directories.