shirou_gopsutil/load/load_windows.go

20 lines
281 B
Go
Raw Normal View History

2014-04-18 20:28:00 +08:00
// +build windows
2014-12-30 21:09:05 +08:00
package load
2014-04-18 20:28:00 +08:00
import (
2015-10-19 23:04:57 +08:00
"github.com/shirou/gopsutil/internal/common"
)
func Avg() (*AvgStat, error) {
ret := AvgStat{}
2014-04-18 20:28:00 +08:00
return &ret, common.NotImplementedError
2014-04-18 20:28:00 +08:00
}
func Misc() (*MiscStat, error) {
ret := MiscStat{}
return &ret, common.NotImplementedError
}