linuxkit/pkg/metadata/vendor/github.com/diskfs/go-diskfs/filesystem/file.go
Itxaka ea6268dd74
Bump go-diskfs to latest (#3902)
Also fix cdrom provider use of the new diskfs

Signed-off-by: Itxaka <itxaka@spectrocloud.com>

Signed-off-by: Itxaka <itxaka@spectrocloud.com>
Co-authored-by: Itxaka <itxaka@spectrocloud.com>
2023-01-23 16:19:32 +02:00

12 lines
165 B
Go
Vendored

package filesystem
import "io"
// File a reference to a single file on disk
type File interface {
io.ReadWriteSeeker
io.Closer
// io.ReaderAt
// io.WriterAt
}