mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
13 lines
334 B
Go
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"`
|
|
}
|