shirou_gopsutil/host/host_darwin_nocgo.go

11 lines
217 B
Go
Raw Normal View History

2017-03-19 09:05:46 +08:00
// +build darwin
// +build !cgo
package host
import "github.com/shirou/gopsutil/internal/common"
func SensorsTemperatures() ([]TemperatureStat, error) {
2017-04-10 21:24:36 +08:00
return []TemperatureStat{}, common.ErrNotImplementedError
2017-03-19 09:05:46 +08:00
}