pkger/fs/fstest/file.go

13 lines
150 B
Go
Raw Normal View History

2019-09-01 00:00:24 +03:00
package fstest
import (
"github.com/markbates/pkger/fs"
)
type TestFile struct {
Name string
2019-09-01 05:45:22 +03:00
Path fs.Path
2019-09-01 00:00:24 +03:00
}
2019-09-01 06:29:25 +03:00
type TestFiles map[fs.Path]TestFile