mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
13 lines
117 B
Go
13 lines
117 B
Go
package mutex
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
var (
|
|
Db = sync.Mutex{}
|
|
Worker = Busy{}
|
|
Sync = Busy{}
|
|
Share = Busy{}
|
|
)
|