1 // +build darwin 2 // +build !cgo 3 4 package host 5 6 import ( 7 "context" 8 9 "github.com/shirou/gopsutil/internal/common" 10 ) 11 12 func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) { 13 return []TemperatureStat{}, common.ErrNotImplementedError 14 } 15