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