1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/load_windows.go
2014-04-18 21:28:00 +09:00

10 lines
114 B
Go

// +build windows
package main
func (l Load) LoadAvg() (LoadAvg, error) {
ret := LoadAvg{}
return ret, nil
}