stash/pkg/manager/task.go

9 lines
108 B
Go
Raw Normal View History

2019-02-09 12:30:49 +00:00
package manager
import "sync"
type Task interface {
Start(wg *sync.WaitGroup)
2021-05-24 04:24:18 +00:00
GetDescription() string
}