You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/vendor/github.com/mitchellh/go-fs/filesystem.go

9 lines
200 B

package fs
// A FileSystem provides access to a tree hierarchy of directories
// and files.
type FileSystem interface {
// RootDir returns the single root directory.
RootDir() (Directory, error)
}