embed smartctl in the windows binary (#1362)

This commit is contained in:
henrygd
2025-11-05 13:03:47 -05:00
parent 02d594cc82
commit 1af7ff600f
7 changed files with 540 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
//go:build !windows
package agent
import "errors"
func ensureEmbeddedSmartctl() (string, error) {
return "", errors.ErrUnsupported
}