mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
16 lines
271 B
Go
16 lines
271 B
Go
package pkg
|
|
|
|
import "github.com/anchore/stereoscope/pkg/file"
|
|
|
|
// TODO: add package ID (random/incremental)
|
|
|
|
type Package struct {
|
|
Name string
|
|
Version string
|
|
Source []file.Reference
|
|
Licenses []string
|
|
Type Type
|
|
Metadata interface{}
|
|
}
|
|
|
|
// TODO: stringer... |