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

14 lines
198 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
import (
common "github.com/shirou/gopsutil/common"
)
func LoadAvg() (*LoadAvgStat, error) {
2014-04-22 21:39:18 +09:00
ret := LoadAvgStat{}
2014-04-18 21:28:00 +09:00
return &ret, common.NotImplementedError
2014-04-18 21:28:00 +09:00
}