Skip to content

Instantly share code, notes, and snippets.

@guaychou
Created May 17, 2020 09:16
Show Gist options
  • Save guaychou/13c7d1da29ab10d185c7f3c689a5fb25 to your computer and use it in GitHub Desktop.
Save guaychou/13c7d1da29ab10d185c7f3c689a5fb25 to your computer and use it in GitHub Desktop.
package main
func getData()(string){
cpuData:="Cpu: "+strconv.Itoa(getCpuUsage())+"% "
memoryData:="Mem: "+strconv.Itoa(getMemoryUsage())+"% "
return cpuData+memoryData
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment