mirror of
https://github.com/stashapp/stash.git
synced 2026-01-01 13:15:12 +01:00
7 lines
83 B
Go
7 lines
83 B
Go
package manager
|
|
|
|
import "sync"
|
|
|
|
type Task interface {
|
|
Start(wg *sync.WaitGroup)
|
|
}
|