lens @ ead855b7991b14554eb098616cfac29d91e796eb

 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)