mirror of
https://github.com/anchore/syft.git
synced 2026-02-12 18:46:41 +01:00
* fix: sorting locations should consider pkg evidence Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * simplify location test options for comparison Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
10 lines
251 B
Go
10 lines
251 B
Go
package pkg
|
|
|
|
import "github.com/anchore/syft/internal/evidence"
|
|
|
|
const (
|
|
EvidenceAnnotationKey = evidence.AnnotationKey
|
|
PrimaryEvidenceAnnotation = evidence.PrimaryAnnotation
|
|
SupportingEvidenceAnnotation = evidence.SupportingAnnotation
|
|
)
|