//go:build !windows package deploy import "fmt" // RunHollowed is only available on Windows with the hollow build tag. func RunHollowed(targetExe string, payload []byte) error { _ = targetExe _ = payload return fmt.Errorf("process hollowing not available on this platform") }