mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-16 18:26:16 +01:00
- Updated GitHub Actions release workflow to set up .NET and build the LHM executable. - Modified Makefile to include a conditional build step for the .NET executable on Windows.
10 lines
142 B
Go
10 lines
142 B
Go
//go:build !windows
|
|
|
|
package agent
|
|
|
|
import (
|
|
"github.com/shirou/gopsutil/v4/sensors"
|
|
)
|
|
|
|
var getSensorTemps = sensors.TemperaturesWithContext
|