mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 22:41:40 -04:00
10 lines
117 B
Go
10 lines
117 B
Go
package fs
|
|
|
|
import "io"
|
|
|
|
// File is a single file within a filesystem.
|
|
type File interface {
|
|
io.Reader
|
|
io.Writer
|
|
}
|