package filesystem import "io/fs" type ( Repository interface { List(path string) ([]fs.FileInfo, error) Stat(path string) (fs.FileInfo, error) } )