shirou_gopsutil/cpu_windows.go

15 lines
173 B
Go

// +build windows
package main
import (
"fmt"
)
func (c CPU) Cpu_times() ([]CPU_Times, error) {
ret := make([]CPU_Times, 0)
fmt.Println("Windows")
return ret, nil
}