Files
photoprism/internal/config/var.go
2025-11-22 20:00:53 +01:00

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
)