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