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