Files
learngo/30-concurrency/xxx-concurrent-downloader/fetch/progress.go

11 lines
209 B
Go
Raw Normal View History

2019-04-26 21:32:20 +03:00
package fetch
// Progress contains data about the downloading progress
type Progress struct {
URL string
Total, Downloaded, Current int
Done bool
Error error
}