stash/pkg/manager/task.go

9 lines
106 B
Go

package manager
import "sync"
type Task interface {
Start(wg *sync.WaitGroup)
GetStatus() JobStatus
}