An openFile is a regular (non-directory) fs.File open for reading.
| 179 | |
| 180 | // An openFile is a regular (non-directory) fs.File open for reading. |
| 181 | type openFile struct { |
| 182 | fileinfo |
| 183 | data []byte |
| 184 | offset int64 |
| 185 | } |
| 186 | |
| 187 | var _ fs.File = (*openFile)(nil) |
| 188 |
nothing calls this directly
no outgoing calls
no test coverage detected