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