lens @ d6cf67b3d7747b6274d92e394d75d348060fa5f5

 1package filesystem
 2
 3import "io/fs"
 4
 5type (
 6	Repository interface {
 7		List(path string) ([]fs.FileInfo, error)
 8		Stat(path string) (fs.FileInfo, error)
 9	}
10)