stash/pkg/manager/task.go
2021-05-24 14:24:18 +10:00

8 lines
108 B
Go

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