mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +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
263 B
Go
10 lines
263 B
Go
package evidence
|
|
|
|
// this package exists so that the file package can reference package evidence in tests without creating a circular dependency.
|
|
|
|
const (
|
|
AnnotationKey = "evidence"
|
|
PrimaryAnnotation = "primary"
|
|
SupportingAnnotation = "supporting"
|
|
)
|