mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
14 lines
264 B
Go
14 lines
264 B
Go
package config
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
var (
|
|
once sync.Once
|
|
initThumbsMutex sync.Mutex
|
|
// LowMem indicates the system has less RAM than the recommended minimum.
|
|
LowMem = false
|
|
// TotalMem stores the detected system memory in bytes.
|
|
TotalMem uint64
|
|
)
|