//go:build !windows package main import ( "context" "fmt" ) // runProxy stub for non-Windows builds (drover only ships for Windows; // this stub keeps `go build ./...` clean on Linux dev/CI machines). func runProxy(_ context.Context, _ string, _ int, _ bool, _, _ string) error { return fmt.Errorf("the proxy subcommand requires Windows (WinDivert is Windows-only)") }