Fs represents a remote mega
| 144 | |
| 145 | // Fs represents a remote mega |
| 146 | type Fs struct { |
| 147 | name string // name of this remote |
| 148 | root string // the path we are working on |
| 149 | opt Options // parsed config options |
| 150 | features *fs.Features // optional features |
| 151 | srv *mega.Mega // the connection to the server |
| 152 | pacer *fs.Pacer // pacer for API calls |
| 153 | rootNodeMu sync.Mutex // mutex for _rootNode |
| 154 | _rootNode *mega.Node // root node - call findRoot to use this |
| 155 | mkdirMu sync.Mutex // used to serialize calls to mkdir / rmdir |
| 156 | } |
| 157 | |
| 158 | // Object describes a mega object |
| 159 | // |
nothing calls this directly
no outgoing calls
no test coverage detected