//go:build !linux && !darwin package sandbox import "fmt" // ExtractTun2Socks is not available on unsupported platforms. func ExtractTun2Socks() (string, error) { return "", fmt.Errorf("tun2socks is only available on Linux and macOS") }