mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
8 lines
200 B
Go
8 lines
200 B
Go
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)
|
|
}
|