lens @ 024da3e546e98cbaeea5f7bc86af12b671996f41

 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)