syft/syft/pkg/binary_metadata.go
2023-02-22 12:03:15 -05:00

13 lines
334 B
Go

package pkg
import "github.com/anchore/syft/syft/source"
type BinaryMetadata struct {
Matches []ClassifierMatch `mapstructure:"Matches" json:"matches"`
}
type ClassifierMatch struct {
Classifier string `mapstructure:"Classifier" json:"classifier"`
Location source.Location `mapstructure:"Location" json:"location"`
}