11 lines
209 B
Go
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
|
|
}
|