photoprism/internal/mutex/mutex.go
Michael Mayer b37d4472e4 Backend: Use original file if thumb size exceeds limit #172
Plus some mutex and config refactoring along the way...

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-08 19:51:21 +01:00

10 lines
78 B
Go

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