1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/sensors/sensors_darwin_nocgo.go

15 lines
298 B
Go
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2021-12-22 21:54:41 +00:00
//go:build darwin && !cgo
2019-12-13 16:03:44 +01:00
package sensors
2019-12-13 16:03:44 +01:00
import (
"context"
"github.com/shirou/gopsutil/v4/internal/common"
2019-12-13 16:03:44 +01:00
)
func TemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
2019-12-13 16:03:44 +01:00
return []TemperatureStat{}, common.ErrNotImplementedError
}