stash/pkg/manager/task.go

8 lines
83 B
Go

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