Chris Bednarski 8a53385cbc Revert "Remove a bunch of unused dependencies (godep v54+ required)"
This reverts commit 9ed133ea018e2010ff82b9b280e10caeeb0e7644.
2016-02-22 11:44:12 -08:00

9 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)
}