mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-03 20:26:22 +00:00
11 lines
152 B
Go
Vendored
11 lines
152 B
Go
Vendored
package filesystem
|
|
|
|
import "io"
|
|
|
|
// File a reference to a single file on disk
|
|
type File interface {
|
|
io.ReadWriteSeeker
|
|
//io.ReaderAt
|
|
//io.WriterAt
|
|
}
|