mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01: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"`
|
|
}
|