packer/vendor/github.com/mitchellh/go-fs/file.go
2016-02-22 11:44:12 -08:00

9 lines
117 B
Go

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