package system import ( "github.com/shirou/gopsutil/cpu" ) func GetCpuInfo() []cpu.InfoStat { infoStats, _ := cpu.Info() return infoStats }