mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
9 lines
117 B
Go
9 lines
117 B
Go
package fs
|
|
|
|
import "io"
|
|
|
|
// File is a single file within a filesystem.
|
|
type File interface {
|
|
io.Reader
|
|
io.Writer
|
|
}
|