(numBytes int64)
| 96 | } |
| 97 | |
| 98 | func (p *cliProgress) UploadedBytes(numBytes int64) { |
| 99 | p.uploadedBytes.Add(numBytes) |
| 100 | p.uploadedFiles.Add(1) |
| 101 | |
| 102 | p.maybeOutput() |
| 103 | } |
| 104 | |
| 105 | func (p *cliProgress) HashedBytes(numBytes int64) { |
| 106 | p.hashedBytes.Add(numBytes) |
nothing calls this directly
no test coverage detected