Fs represents a wrapped fs.Fs
| 318 | |
| 319 | // Fs represents a wrapped fs.Fs |
| 320 | type Fs struct { |
| 321 | fs.Fs |
| 322 | wrapper fs.Fs |
| 323 | name string |
| 324 | root string |
| 325 | opt Options |
| 326 | features *fs.Features // optional features |
| 327 | cipher *Cipher |
| 328 | } |
| 329 | |
| 330 | // Name of the remote (as passed into NewFs) |
| 331 | func (f *Fs) Name() string { |
nothing calls this directly
no outgoing calls
no test coverage detected