Files
stash/pkg/manager/task.go
Stash Dev b488c1ed7d Reorg
2019-02-14 15:42:52 -08:00

8 lines
83 B
Go

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