mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-22 13:36:16 +01:00
16 lines
275 B
Go
16 lines
275 B
Go
//go:build (!linux && !windows) || !amd64 || (linux && !glibc)
|
|
|
|
package agent
|
|
|
|
import "fmt"
|
|
|
|
type nvmlCollector struct {
|
|
gm *GPUManager
|
|
}
|
|
|
|
func (c *nvmlCollector) init() error {
|
|
return fmt.Errorf("nvml not supported on this platform")
|
|
}
|
|
|
|
func (c *nvmlCollector) start() {}
|