photoprism/internal/mutex/mutex.go
Michael Mayer 2e5840f3b0 Implement share worker #225
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-03 18:08:49 +02:00

13 lines
117 B
Go

package mutex
import (
"sync"
)
var (
Db = sync.Mutex{}
Worker = Busy{}
Sync = Busy{}
Share = Busy{}
)