mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
Signed-off-by: Alex Goodman <alex.goodman@anchore.com> Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
10 lines
321 B
Go
10 lines
321 B
Go
package pkg
|
|
|
|
type DotnetDepsMetadata struct {
|
|
Name string `mapstructure:"name" json:"name"`
|
|
Version string `mapstructure:"version" json:"version"`
|
|
Path string `mapstructure:"path" json:"path"`
|
|
Sha512 string `mapstructure:"sha512" json:"sha512"`
|
|
HashPath string `mapstructure:"hashPath" json:"hashPath"`
|
|
}
|