karmada/vendor/github.com/chigopher/pathlib/file.go

10 lines
217 B
Go

package pathlib
import "github.com/spf13/afero"
// File represents a file in the filesystem. It inherits the afero.File interface
// but might also include additional functionality.
type File struct {
afero.File
}