| 320 | } |
| 321 | |
| 322 | type SystemFS interface { |
| 323 | Open(string) (fs.File, error) |
| 324 | ReadDir(string) ([]fs.DirEntry, error) |
| 325 | Stat(string) (fs.FileInfo, error) |
| 326 | WriteFile(string, []byte, os.FileMode) error |
| 327 | } |
| 328 | |
| 329 | // https://github.com/golang/go/issues/47803 |
| 330 | type osFS struct{} |
no outgoing calls
no test coverage detected