mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 08:44:04 +01:00
15 lines
264 B
Go
15 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
|
|
)
|