f5a8c5a45d
Signed-off-by: Michael Mayer <michael@photoprism.app>
11 lines
108 B
Go
11 lines
108 B
Go
package mutex
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
// Shared resources.
|
|
var (
|
|
Db = sync.Mutex{}
|
|
Index = sync.Mutex{}
|
|
)
|