mirror of
https://github.com/stashapp/stash.git
synced 2025-12-08 09:23:38 +01:00
8 lines
106 B
Go
8 lines
106 B
Go
package manager
|
|
|
|
import "sync"
|
|
|
|
type Task interface {
|
|
Start(wg *sync.WaitGroup)
|
|
GetStatus() JobStatus
|
|
}
|