2017-07-28 16:46:44 +00:00
|
|
|
// +build darwin
|
|
|
|
// +build !cgo
|
|
|
|
|
|
|
|
package host
|
|
|
|
|
2018-03-06 00:52:43 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/shirou/gopsutil/internal/common"
|
|
|
|
)
|
2017-07-28 16:46:44 +00:00
|
|
|
|
|
|
|
func SensorsTemperatures() ([]TemperatureStat, error) {
|
2018-03-06 00:52:43 +00:00
|
|
|
return SensorsTemperaturesWithContext(context.Background())
|
|
|
|
}
|
|
|
|
|
|
|
|
func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
|
2017-07-28 16:46:44 +00:00
|
|
|
return []TemperatureStat{}, common.ErrNotImplementedError
|
|
|
|
}
|