blob: 82e43e1fd18099cf5921f1048df81570212ee1ac (
plain)
1
2
3
4
5
6
7
8
9
|
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
}
|