mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
9 lines
158 B
Go
9 lines
158 B
Go
package artifact
|
|
|
|
// ID represents a unique value for each package added to a package catalog.
|
|
type ID string
|
|
|
|
type Identifiable interface {
|
|
Identity() ID
|
|
}
|