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
|
|
|
}
|