mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
* improve struct and field comments and incorporate into json schema Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * address review feedback Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
8 lines
320 B
Go
8 lines
320 B
Go
package pkg
|
|
|
|
// SwiftPackageManagerResolvedEntry represents a resolved dependency from a Package.resolved file with its locked version and source location.
|
|
type SwiftPackageManagerResolvedEntry struct {
|
|
// Revision is git commit hash of the resolved package
|
|
Revision string `mapstructure:"revision" json:"revision"`
|
|
}
|