Fs stores the interface to the remote HTTP files
| 148 | |
| 149 | // Fs stores the interface to the remote HTTP files |
| 150 | type Fs struct { |
| 151 | name string |
| 152 | root string |
| 153 | features *fs.Features // optional features |
| 154 | opt Options // options for this backend |
| 155 | ci *fs.ConfigInfo // global config |
| 156 | endpoint *url.URL |
| 157 | endpointURL string // endpoint as a string |
| 158 | httpClient *http.Client |
| 159 | } |
| 160 | |
| 161 | // Object is a remote object that has been stat'd (so it exists, but is not necessarily open for reading) |
| 162 | type Object struct { |
nothing calls this directly
no outgoing calls
no test coverage detected