Fs represents remote Quatrix fs
| 118 | |
| 119 | // Fs represents remote Quatrix fs |
| 120 | type Fs struct { |
| 121 | name string |
| 122 | root string |
| 123 | description string |
| 124 | features *fs.Features |
| 125 | opt Options |
| 126 | ci *fs.ConfigInfo |
| 127 | srv *rest.Client // the connection to the quatrix server |
| 128 | pacer *fs.Pacer // pacer for API calls |
| 129 | dirCache *dircache.DirCache |
| 130 | uploadMemoryManager *UploadMemoryManager |
| 131 | } |
| 132 | |
| 133 | // Object describes a quatrix object |
| 134 | type Object struct { |
nothing calls this directly
no outgoing calls
no test coverage detected