mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-27 20:48:11 +00:00
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>
12 lines
165 B
Go
Vendored
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
|
|
}
|