mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
7 lines
82 B
Go
7 lines
82 B
Go
package manager
|
|
|
|
import "sync"
|
|
|
|
type Task interface {
|
|
Start(wg *sync.WaitGroup)
|
|
} |