mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-21 23:00:42 -08:00
12 lines
284 B
Go
12 lines
284 B
Go
package vex
|
|
|
|
type Status string
|
|
|
|
const (
|
|
StatusNotAffected Status = "not_affected"
|
|
StatusAffected Status = "affected"
|
|
StatusFixed Status = "fixed"
|
|
StatusUnderInvestigation Status = "under_investigation"
|
|
StatusUnknown Status = "unknown"
|
|
)
|