Files
learngo/30-concurrency/xxx-concurrent-downloader/fetch/progress.go
2019-04-27 20:18:24 +03:00

11 lines
209 B
Go

package fetch
// Progress contains data about the downloading progress
type Progress struct {
URL string
Total, Downloaded, Current int
Done bool
Error error
}