//go:build !windows package main import ( "fmt" "os" ) func main() { fmt.Fprintln(os.Stderr, "Navis GUI (WebView2) is Windows-only.") fmt.Fprintln(os.Stderr, "On macOS use the CLI binary: ./Navis connect | install-core | check-update") os.Exit(1) }