mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-16 18:26:16 +01:00
10 lines
137 B
Go
10 lines
137 B
Go
//go:build !windows
|
|
|
|
package agent
|
|
|
|
import "errors"
|
|
|
|
func ensureEmbeddedSmartctl() (string, error) {
|
|
return "", errors.ErrUnsupported
|
|
}
|