...

Source file src/gitlab.com/tslocum/gophast/pkg/download/progress.go

Documentation: gitlab.com/tslocum/gophast/pkg/download

     1  package download
     2  
     3  type RangeBarInfo struct {
     4  	Index    int
     5  	Size     int64
     6  	Progress chan *BytesWrote
     7  }
     8  
     9  type GlobalBarInfo struct {
    10  	Name     string
    11  	Size     int64
    12  	Pieces   int
    13  	Progress chan *BytesWrote
    14  }
    15  

View as plain text