* service: logging to syslog * chore: update gopsutil to v4 * chore: move println() to the util package * gpu: only return 0 on failure
8 lines
88 B
Go
8 lines
88 B
Go
//go:build freebsd
|
|
|
|
package stat
|
|
|
|
func GetGPUStat() (float64, error) {
|
|
return 0, nil
|
|
}
|