Files
sproutclaw-web/backend/internal/handlers/sysinfo_other.go

12 lines
148 B
Go

//go:build !linux && !windows
package handlers
func getSysMemMb() (total, free int64) {
return 0, 0
}
func getOSRelease() string {
return ""
}