(name string)
| 38 | // FileSystem defines file operations for testability |
| 39 | type FileSystem interface { |
| 40 | ReadFile(name string) ([]byte, error) |
| 41 | Open(name string) (*os.File, error) |
| 42 | Stat(name string) (os.FileInfo, error) |
| 43 | } |
no outgoing calls
no test coverage detected