mirror of
https://github.com/anchore/syft.git
synced 2025-11-21 18:33:18 +01:00
10 lines
249 B
Go
10 lines
249 B
Go
package pkg
|
|
|
|
import "github.com/anchore/syft/syft/artifact"
|
|
|
|
func NewRelationships(catalog *Collection) []artifact.Relationship {
|
|
rels := RelationshipsByFileOwnership(catalog)
|
|
rels = append(rels, RelationshipsEvidentBy(catalog)...)
|
|
return rels
|
|
}
|