//go:build !windows package preflight // Result is one pre-flight check outcome. type Result struct { Name string OK bool Detail string } // RunAll returns empty results on non-Windows platforms. func RunAll() []Result { return nil }