1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00
Files
2023-07-13 08:18:41 +12:00

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
}