nezhahq-agent/pkg/gpu/stat/stat_freebsd.go
UUBulb fb7b45527b
service: logging to syslog (#33)
* service: logging to syslog

* chore: update gopsutil to v4

* chore: move println() to the util package

* gpu: only return 0 on failure
2024-07-05 22:31:56 +08:00

8 lines
88 B
Go

//go:build freebsd
package stat
func GetGPUStat() (float64, error) {
return 0, nil
}