mirror of
https://github.com/anchore/syft.git
synced 2026-08-20 09:08:28 +02:00
10 lines
273 B
Go
10 lines
273 B
Go
package source
|
|
|
|
import "github.com/anchore/syft/syft/file"
|
|
|
|
type FileMetadata struct {
|
|
Path string `json:"path" yaml:"path"`
|
|
Digests []file.Digest `json:"digests,omitempty" yaml:"digests,omitempty"`
|
|
MIMEType string `json:"mimeType" yaml:"mimeType"`
|
|
}
|