github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/syft/file/location_read_closer.go (about) 1 package file 2 3 import "io" 4 5 type LocationReadCloser struct { 6 Location 7 io.ReadCloser 8 } 9 10 func NewLocationReadCloser(location Location, reader io.ReadCloser) LocationReadCloser { 11 return LocationReadCloser{ 12 Location: location, 13 ReadCloser: reader, 14 } 15 }