mirror of
https://github.com/anchore/syft.git
synced 2026-02-12 18:46:41 +01:00
9 lines
97 B
Go
9 lines
97 B
Go
package source
|
|
|
|
import "io"
|
|
|
|
type FileData struct {
|
|
Location Location
|
|
Contents io.ReadCloser
|
|
}
|