host_darwin_nocgo.go 264 B

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