1 // Copyright 2019 The Kubernetes Authors. 2 // SPDX-License-Identifier: Apache-2.0 3 4 package filesys 5 6 import ( 7 "io" 8 "os" 9 ) 10 11 // File groups the basic os.File methods. 12 type File interface { 13 io.ReadWriteCloser 14 Stat() (os.FileInfo, error) 15 } 16