//go:build windows && !hollow package deploy import "fmt" // RunHollowed is only available when built with the "hollow" build tag. // This keeps the default agent build safe and avoids unsafe pointer warnings in vet. func RunHollowed(targetExe string, payload []byte) error { return fmt.Errorf("process hollowing disabled (build without -tags hollow)") }