mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
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
|
|
}
|