mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 15:47:14 +01:00
12 lines
165 B
Go
12 lines
165 B
Go
package filesystem
|
|
|
|
import "io"
|
|
|
|
// File a reference to a single file on disk
|
|
type File interface {
|
|
io.ReadWriteSeeker
|
|
io.Closer
|
|
// io.ReaderAt
|
|
// io.WriterAt
|
|
}
|