Codebase list golang-github-mitchellh-go-fs / HEAD file.go
HEAD

Tree @HEAD (Download .tar.gz)

file.go @HEADraw · history · blame

1
2
3
4
5
6
7
8
9
package fs

import "io"

// File is a single file within a filesystem.
type File interface {
	io.Reader
	io.Writer
}