diff --git a/cpu_windows.go b/cpu_windows.go index 5cec38d..aff3f6c 100644 --- a/cpu_windows.go +++ b/cpu_windows.go @@ -35,3 +35,8 @@ func CPUTimes(percpu bool) ([]CPUTimesStat, error) { }) return ret, nil } + +func CPUInfo() ([]CPUInfoStat, error) { + var ret []CPUInfoStat + return ret, nil +}