mirror of
https://github.com/stashapp/stash.git
synced 2026-06-11 18:35:26 -05:00
8 lines
83 B
Go
8 lines
83 B
Go
package manager
|
|
|
|
import "sync"
|
|
|
|
type Task interface {
|
|
Start(wg *sync.WaitGroup)
|
|
}
|