mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
17 lines
511 B
Go
17 lines
511 B
Go
package pkg
|
|
|
|
// TODO: consider keeping the remaining values as an embedded map
|
|
// Available fields are described at http://manpages.ubuntu.com/manpages/xenial/man1/dpkg-query.1.html
|
|
// in the --showformat section
|
|
type DpkgMetadata struct {
|
|
Package string `mapstructure:"Package"`
|
|
Source string `mapstructure:"Source"`
|
|
Version string `mapstructure:"Version"`
|
|
}
|
|
|
|
type RpmMetadata struct {
|
|
Epoch int `mapstructure:"Epoch"`
|
|
Arch string `mapstructure:"Arch"`
|
|
Release string `mapstructure:"Release"`
|
|
}
|