blob: c45c15442c10fa6ba8f1b5a9421ab409542458f6 [file] [log] [blame]
// +build windows
package load
import (
"github.com/shirou/gopsutil/internal/common"
)
func Avg() (*AvgStat, error) {
ret := AvgStat{}
return &ret, common.ErrNotImplementedError
}
func Misc() (*MiscStat, error) {
ret := MiscStat{}
return &ret, common.ErrNotImplementedError
}