Files
beszel-ipv6/agent/smart_nonwindows.go
2025-11-05 13:03:47 -05:00

10 lines
137 B
Go

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