Fs represents the FileLu file system
| 96 | |
| 97 | // Fs represents the FileLu file system |
| 98 | type Fs struct { |
| 99 | name string |
| 100 | root string |
| 101 | opt Options |
| 102 | features *fs.Features |
| 103 | endpoint string |
| 104 | pacer *pacer.Pacer |
| 105 | srv *rest.Client |
| 106 | client *http.Client |
| 107 | targetFile string |
| 108 | } |
| 109 | |
| 110 | // NewFs creates a new Fs object for FileLu |
| 111 | func NewFs(ctx context.Context, name string, root string, m configmap.Mapper) (fs.Fs, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected