| 25 | } |
| 26 | |
| 27 | type Obj interface { |
| 28 | GetSize() int64 |
| 29 | GetName() string |
| 30 | ModTime() time.Time |
| 31 | CreateTime() time.Time |
| 32 | IsDir() bool |
| 33 | GetHash() utils.HashInfo |
| 34 | |
| 35 | // The internal information of the driver. |
| 36 | // If you want to use it, please understand what it means |
| 37 | GetID() string |
| 38 | GetPath() string |
| 39 | } |
| 40 | |
| 41 | // FileStreamer ->check FileStream for more comments |
| 42 | type FileStreamer interface { |
no outgoing calls
no test coverage detected