shirou_gopsutil/host/host_darwin_nocgo.go

15 lines
267 B
Go

// +build darwin
// +build !cgo
package host
import (
"context"
"github.com/shirou/gopsutil/v3/internal/common"
)
func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
return []TemperatureStat{}, common.ErrNotImplementedError
}