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

20 lines
281 B
Go

// +build windows
package load
import (
"github.com/shirou/gopsutil/internal/common"
)
func Avg() (*AvgStat, error) {
ret := AvgStat{}
return &ret, common.NotImplementedError
}
func Misc() (*MiscStat, error) {
ret := MiscStat{}
return &ret, common.NotImplementedError
}