Files
golsky/cmd/system.go

12 lines
185 B
Go
Raw Permalink Normal View History

2025-11-13 21:30:44 +01:00
package cmd
import "runtime"
// returns current memory usage in MB
func GetMem() float64 {
var m runtime.MemStats
runtime.ReadMemStats(&m)
return float64(m.Alloc) / 1024 / 1024
}