Fs represents a remote sugarsync
| 205 | |
| 206 | // Fs represents a remote sugarsync |
| 207 | type Fs struct { |
| 208 | name string // name of this remote |
| 209 | root string // the path we are working on |
| 210 | opt Options // parsed options |
| 211 | features *fs.Features // optional features |
| 212 | srv *rest.Client // the connection to the server |
| 213 | dirCache *dircache.DirCache // Map of directory path to directory id |
| 214 | pacer *fs.Pacer // pacer for API calls |
| 215 | m configmap.Mapper // config file access |
| 216 | authMu sync.Mutex // used when doing authorization |
| 217 | authExpiry time.Time // time the authorization expires |
| 218 | } |
| 219 | |
| 220 | // Object describes a sugarsync object |
| 221 | // |
nothing calls this directly
no outgoing calls
no test coverage detected