1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-24 13:48:56 +08:00
shirou_gopsutil/load_windows.go

10 lines
135 B
Go
Raw Normal View History

2014-04-18 21:28:00 +09:00
// +build windows
2014-04-22 09:44:22 +09:00
package gopsutil
2014-04-18 21:28:00 +09:00
func LoadAvg() (*LoadAvgStat, error) {
2014-04-22 21:39:18 +09:00
ret := LoadAvgStat{}
2014-04-18 21:28:00 +09:00
return &ret, NotImplementedError
2014-04-18 21:28:00 +09:00
}