github.com/kastenhq/syft@v0.0.0-20230821225854-0710af25cdbe/syft/pkg/binary_metadata.go (about) 1 package pkg 2 3 import "github.com/kastenhq/syft/syft/file" 4 5 type BinaryMetadata struct { 6 Matches []ClassifierMatch `mapstructure:"Matches" json:"matches"` 7 } 8 9 type ClassifierMatch struct { 10 Classifier string `mapstructure:"Classifier" json:"classifier"` 11 Location file.Location `mapstructure:"Location" json:"location"` 12 }