lens @ c8e1328164e9ffbd681c3c0e449f1e6b9856b896

 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)