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

15 lines
291 B
Go
Raw Permalink Normal View History

// SPDX-License-Identifier: BSD-3-Clause
//go:build freebsd
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
}