File is the interface returned when opening a DirectoryEntry that is a regular file.
| 82 | // File is the interface returned when opening a DirectoryEntry that |
| 83 | // is a regular file. |
| 84 | type File interface { |
| 85 | io.Closer |
| 86 | io.ReaderAt |
| 87 | io.Reader |
| 88 | Size() int64 |
| 89 | } |
| 90 | |
| 91 | // Directory is a read-only interface to a "directory" schema blob. |
| 92 | type Directory interface { |
no outgoing calls
no test coverage detected