21 lines
388 B
Go
21 lines
388 B
Go
package load
|
|
|
|
import (
|
|
"gitlab.sweetwater.com/it/devops/tools/gitlab-project-manager/internal/remotes/projects"
|
|
)
|
|
|
|
type ProgressInfo struct {
|
|
ProgressChan chan Progress
|
|
ProjectsChan chan []*projects.Project
|
|
ErrorChan chan error
|
|
DoneChan chan interface{}
|
|
NumProjects int
|
|
}
|
|
|
|
type Progress struct {
|
|
Page int
|
|
Pages int
|
|
Projects int
|
|
TotalProjects int
|
|
}
|