//go:build !linux package web import "context" // runNetProbe is Linux-only (SysProcAttr.Credential). Off-linux (dev/test hosts) the seam must be // injected; reaching this stub is a wiring error, reported as a failed probe — never a false PASS. func runNetProbe(_ context.Context, _ string) probeOutcome { return probeOutcome{OK: false, Category: "probe_io", Detail: "uid-1000 probe unavailable on this platform"} }