b2Backend is a backend which stores its data on Backblaze B2.
| 23 | |
| 24 | // b2Backend is a backend which stores its data on Backblaze B2. |
| 25 | type b2Backend struct { |
| 26 | client *b2.Client |
| 27 | bucket *b2.Bucket |
| 28 | cfg Config |
| 29 | listMaxItems int |
| 30 | layout.Layout |
| 31 | |
| 32 | canDelete bool |
| 33 | } |
| 34 | |
| 35 | var errTooShort = fmt.Errorf("file is too short") |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected