(name string)
| 15 | // mock to drive the pipeline without touching disk. |
| 16 | type FileSystem interface { |
| 17 | Stat(name string) (os.FileInfo, error) |
| 18 | Open(name string) (fs.File, error) |
| 19 | Getwd() (string, error) |
| 20 | Abs(path string) (string, error) |
no outgoing calls