| 51 | } |
| 52 | |
| 53 | type WriteFS interface { |
| 54 | OpenWritable(name string) (WritableFile, error) |
| 55 | OpenAppendable(name string) (WritableFile, error) |
| 56 | } |
| 57 | |
| 58 | type readWriteFSImpl struct { |
| 59 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…