lens @ 91d413b3a15a15fd8b710d8f5a1532d2e3de6f05

 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)