photoprism/internal/config/var.go
Michael Mayer 7c0f0b41ba CI: Apply Go linter recommendations to "internal/config" packages #5330
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-11-22 20:00:53 +01:00

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
)