1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-05-02 22:17:08 +08:00
shirou_gopsutil/host/host_darwin_nocgo.go

11 lines
217 B
Go
Raw Normal View History

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