pkger/fs/fstest/file.go

13 lines
149 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
}
type TestFiles map[string]TestFile