mirror of
https://github.com/anchore/syft.git
synced 2026-02-12 18:46:41 +01:00
9 lines
349 B
Go
9 lines
349 B
Go
package source
|
|
|
|
// Metadata represents any static source data that helps describe "what" was cataloged.
|
|
type Metadata struct {
|
|
Scheme Scheme // the source data scheme type (directory or image)
|
|
ImageMetadata ImageMetadata // all image info (image only)
|
|
Path string // the root path to be cataloged (directory only)
|
|
}
|