Created
May 17, 2020 09:16
-
-
Save guaychou/13c7d1da29ab10d185c7f3c689a5fb25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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