Files
Beszel/agent/smart_nonwindows.go
T

10 lines
137 B
Go

//go:build !windows
package agent
import "errors"
func ensureEmbeddedSmartctl() (string, error) {
return "", errors.ErrUnsupported
}