11 lines
217 B
Go
11 lines
217 B
Go
|
// +build darwin
|
||
|
// +build !cgo
|
||
|
|
||
|
package host
|
||
|
|
||
|
import "github.com/shirou/gopsutil/internal/common"
|
||
|
|
||
|
func SensorsTemperatures() ([]TemperatureStat, error) {
|
||
|
return []TemperatureStat{}, common.ErrNotImplementedError
|
||
|
}
|