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

20 lines
281 B
Go
Raw Normal View History

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