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