mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
9 lines
106 B
Go
9 lines
106 B
Go
package manager
|
|
|
|
import "sync"
|
|
|
|
type Task interface {
|
|
Start(wg *sync.WaitGroup)
|
|
GetStatus() JobStatus
|
|
}
|