mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
10 lines
117 B
Go
10 lines
117 B
Go
// +build windows
|
|
|
|
package gopsutil
|
|
|
|
func LoadAvg() (LoadAvgStat, error) {
|
|
ret := LoadAvgStat{}
|
|
|
|
return ret, nil
|
|
}
|