mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
11 lines
291 B
Go
11 lines
291 B
Go
package config
|
|
|
|
type FileMetadata struct {
|
|
Cataloger catalogerOptions `yaml:"cataloger" json:"cataloger" mapstructure:"cataloger"`
|
|
Digests []string `yaml:"digests" json:"digests" mapstructure:"digests"`
|
|
}
|
|
|
|
func (cfg *FileMetadata) build() error {
|
|
return cfg.Cataloger.build()
|
|
}
|