mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 09:53:40 +01:00
8 lines
108 B
Go
8 lines
108 B
Go
package manager
|
|
|
|
import "sync"
|
|
|
|
type Task interface {
|
|
Start(wg *sync.WaitGroup)
|
|
GetDescription() string
|
|
}
|