package resources import ( "github.com/shirou/gopsutil/mem" ) func GetHostVirtualMemory() (*mem.VirtualMemoryStat, error) { return mem.VirtualMemory() } func GetHostVirtualMemoryEx() (*mem.VirtualMemoryExStat, error) { return mem.VirtualMemoryEx() } func GetHostSwapMemory() (*mem.SwapMemoryStat, error) { return mem.SwapMemory() }