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

15 lines
291 B
Go
Raw Normal View History

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