lens @ cd1fa849fb161d3bbc7c582aa2787315a1037db1

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