d778d9d566
* deps: Update github.com/go-ole/go-ole/... * deps: Update github.com/StackExchange/wmi * deps: Update github.com/shirou/gopsutil/... * deps: Update github.com/ugorji/go/codec
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
|
|
}
|