Fs represents a remote memory server
| 64 | |
| 65 | // Fs represents a remote memory server |
| 66 | type Fs struct { |
| 67 | name string // name of this remote |
| 68 | root string // the path we are working on if any |
| 69 | opt Options // parsed config options |
| 70 | rootBucket string // bucket part of root (if any) |
| 71 | rootDirectory string // directory part of root (if any) |
| 72 | features *fs.Features // optional features |
| 73 | } |
| 74 | |
| 75 | // bucketsInfo holds info about all the buckets |
| 76 | type bucketsInfo struct { |
nothing calls this directly
no outgoing calls
no test coverage detected